/* 🌼 Đồng bộ font & màu */
body {
    font-family: "Segoe UI", sans-serif;
    background-color: #fff8f5;
    color: #4b2e05;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

/* Form chính */
.forgot-container {
    background: #fffaf7;
    padding: 40px 50px;
    border-radius: 20px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
    width: 380px;
    text-align: center;
    position: relative;
}

.title {
    color: #8c4a22;
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 26px;
}

.subtitle {
    font-size: 14px;
    color: #6b3e16;
    margin-bottom: 25px;
}


.form-group {
    text-align: left;
}
.form-group label {
    color: #6b3e16;
    font-weight: 500;
}
.form-group input {
    width: 100%;
    padding: 12px 14px;
    border-radius: 8px;
    border: 1.5px solid #d9b89c;
    background-color: #fff;
    outline: none;
    transition: border-color 0.25s ease;
}
.form-group input:focus {
    border-color: #a05d2f;
    box-shadow: 0 0 0 0.1rem rgba(160, 93, 47, 0.25);
}

.btn-submit {
    width: 100%;
    margin-top: 25px;
    padding: 14px 0;
    border: none;
    border-radius: 30px;
    background-color: #a05d2f;
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.25s ease;
}
.btn-submit:hover {
    background-color: #8c4a22;
    transform: scale(1.05);
}

/* Link đăng nhập */
.login-link {
    margin-top: 20px;
    font-size: 14px;
}
.login-link a {
    color: #a05d2f;
    text-decoration: underline;
}

/* 🔙 Nút quay lại */
.home-button {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: #6b4f36;
    color: #fff;
    padding: 12px 14px;
    border-radius: 12px;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    transition: 0.25s ease;
    z-index: 10;
}

.home-button:hover {
    background-color: #4b3621;
    transform: translateY(-2px);
}
