* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #f7f5f2;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Container */
.account-wrapper {
    width: 100%;
    max-width: 590px;
    padding: 20px;
}

/* Box */
.account-box {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Title */
.title {
    font-size: 24px;
    margin-bottom: 10px;
    color: #2b2b2b;
}

/* Subtitle */
.subtitle {
    font-size: 14px;
    color: #777;
    margin-bottom: 25px;
    line-height: 1.5;
}

/* Form */
.lost-password-form label {
    display: block;
    font-size: 13px;
    margin-bottom: 8px;
    color: #333;
}

.lost-password-form input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    margin-bottom: 20px;
    outline: none;
}

.lost-password-form input:focus {
    border-color: #b68a5b;
}

/* Button */
.lost-password-form button {
    width: 100%;
    padding: 12px;
    background: #b68a5b;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

.lost-password-form button:hover {
    background: #9c6f43;
}

/* Back link */
.back-login {
    margin-top: 15px;
    text-align: center;
}

.back-login a {
    font-size: 13px;
    color: #666;
    text-decoration: none;
}

.back-login a:hover {
    color: #b68a5b;
}

input:disabled {
    background-color: #f2f2f2;
    color: #777;
    border: 1px solid #ddd;
    cursor: not-allowed;
}