﻿body {
    background: #f5f5f5;
    font-family: 'Segoe UI', sans-serif;
}

.forgot-container {
    background-color: #f4f7fb;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.forgot-card {
    width: 420px;
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0,0,0,.08);
}

.forgot-icon {
    margin-bottom: 15px;
}

    .forgot-icon img {
        width: 110px;
    }

.forgot-card h2 {
    font-size: 28px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 8px;
}

.subtitle {
    color: #9ca3af;
    font-size: 14px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.form-group {
    text-align: left;
    margin-bottom: 25px;
}

    .form-group label {
        display: block;
        margin-bottom: 8px;
        color: #6b7280;
        font-size: 14px;
    }

.form-control {
    width: 100%;
    height: 48px;
    border-radius: 25px;
    border: 1px solid #d1d5db;
    padding: 0 18px;
    font-size: 14px;
    outline: none;
}

    .form-control:focus {
        border-color: #ff6b35;
        box-shadow: 0 0 0 3px rgba(255,107,53,.15);
    }

.btn-send {
    width: 100%;
    height: 48px;
    border: none;
    border-radius: 25px;
    background: #1f6fe5;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: .3s;
}

    .btn-send:hover {
        background: #1f6fe5;
    }

.back-link {
    margin-top: 25px;
}

    .back-link a {
        color: #666;
        text-decoration: none;
        font-size: 14px;
    }

        .back-link a:hover {
            color: #ff6b35;
        }

.text-danger {
    color: #dc2626;
    font-size: 13px;
}
.forgot-icon i {
    font-size: 80px;
    color: #1f6fe5;
}