﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI',sans-serif;
}

body {
    background: #f7f7f7;
    color: #111;
}

.forgot-wrapper {
    display: flex;
    justify-content: center;
    padding-top: 100px;
}

.forgot-box {
    width: 520px;
}

    .forgot-box h1 {
        text-align: center;
        font-size: 52px;
        font-weight: 300;
        margin-bottom: 25px;
    }

.desc {
    text-align: center;
    color: #555;
    line-height: 1.8;
    font-size: 20px;
    margin-bottom: 60px;
}

label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

input {
    width: 100%;
    height: 70px;
    border: 1px solid #d8d8d8;
    background: white;
    padding: 0 20px;
    font-size: 20px;
    margin-bottom: 50px;
}

.btn-submit {
    width: 100%;
    height: 70px;
    background: black;
    color: white;
    border: none;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
}

    .btn-submit:hover {
        opacity: .9;
    }

.back-login {
    display: block;
    text-align: center;
    margin: 40px 0 70px;
    text-decoration: none;
    color: #6b4b2a;
    font-weight: 600;
    letter-spacing: 1px;
}

.product-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

footer {
    margin-top: 120px;
    padding: 30px 70px;
    border-top: 1px solid #e5e5e5;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #666;
}

.footer-links {
    display: flex;
    gap: 40px;
}

    .footer-links a {
        color: #444;
        text-decoration: none;
    }
