/* Layout & Centering */
body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', SegoeUI, 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.page-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* The Main Box */
.login-card {
    width: 350px;
    padding: 44px;
    background: white;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    margin-bottom: 24px;
}

/* BRAND LOGO AND TEXT ALIGNMENT */
.brand-header {
    display: flex;
    align-items: center; /* Align logo and text vertically */
    margin-bottom: 20px;
}

.brand-header img {
    width: 22px; /* Small square logo size */
    height: 22px;
    margin-right: 8px; /* Space between square and text */
}

.brand-text {
    font-size: 21px;
    font-weight: 600;
    color: #737373; /* Correct Grey for Microsoft text */
    letter-spacing: -0.5px;
}

h1 {
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 5px 0;
    color: #1b1b1b;
}

.error-message {
    color: #e81123;
    font-size: 15px;
    margin-bottom: 16px;
    line-height: 1.4;
}

.text-input {
    width: 100%;
    border: none;
    border-bottom: 1px solid #666;
    padding: 8px 0;
    font-size: 15px;
    outline: none;
    margin-bottom: 15px;
}

.text-input:focus {
    border-bottom: 2px solid #0067b8;
}

.account-links {
    font-size: 13px;
    margin-bottom: 40px;
}

.account-links a {
    color: #0067b8;
    text-decoration: none;
}

.action-row {
    display: flex;
    justify-content: flex-end;
}

.next-button {
    background-color: #0067b8;
    color: white;
    border: none;
    padding: 8px 38px;
    font-size: 15px;
    cursor: pointer;
    text-decoration: none; /* removes underline */
    display: inline-block; /* makes <a> behave like a button */
}


/* Small Options Box */
.options-card {
    width: 350px;
    padding: 12px 44px;
    background: white;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.options-wrapper {
    display: flex;
    align-items: center;
}

.key-icon {
    width: 22px;
    margin-right: 12px;
}

/* Dark Footer */
.footer {
    background-color: #404040;
    padding: 6px 20px;
    display: flex;
    justify-content: flex-end;
}

.footer-links a, .footer-links span {
    color: white;
    text-decoration: none;
    font-size: 12px;
    margin-left: 15px;
}


