﻿.account-wrapper {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--color-background); /* optional */
}

.account-box {
    width: 100%;
    max-width: 450px;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.account-header {
    text-align: center;
    margin-bottom: 30px;
}

    .account-header h1 {
        font-size: 26px;
        font-weight: 600;
        margin-bottom: 5px;
    }

    .account-header p {
        color: var(--color-text-muted);
        font-size: 14px;
    }

.account-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-group input {
    width: 100%;
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid var(--mud-palette-lines-default, #D6E0E3);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

    .form-options a {
        text-decoration: none;
    }

.btn-login {
    padding: 12px;
    border-radius: 8px;
    border: none;
    background-color: var(--color-primary);
    color: white;
    font-weight: 600;
    transition: 0.2s;
}

    .btn-login:hover {
        background-color: var(--color-primary-dark);
    }

.account-links {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: center;
    font-size: 14px;
}
