* { box-sizing: border-box; }

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f3f6f9;
}

.page {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.login-card {
    width: 400px;
    background: white;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #ddd;
}

.brand {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.brand-mark {
    width: 40px;
    height: 40px;
    background: #1f4b7a;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.status-box {
    background: #f8fafc;
    padding: 10px;
    margin-bottom: 20px;
    font-size: 14px;
}

.status-row {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
}

input {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
}

button {
    width: 100%;
    padding: 10px;
    background: #1f4b7a;
    color: white;
    border: none;
}
