﻿.forgot-container {
    max-width: 600px;
    margin: 60px auto;
    padding: 0 15px;
}

.forgot-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    overflow: hidden;
}

.forgot-header {
    background: linear-gradient(135deg, #f26522, #e55b0e);
    padding: 40px 30px;
    text-align: center;
    color: white;
}

.forgot-icon {
    font-size: 70px;
    margin-bottom: 15px;
    animation: bounceIn 0.8s ease;
}

.forgot-header h2 {
    font-size: 24px;
    font-weight: bold;
    margin: 0 0 8px 0;
}

.forgot-header p {
    font-size: 14px;
    opacity: 0.9;
    margin: 0;
}

.forgot-body {
    padding: 30px;
}

.info-box {
    display: flex;
    align-items: center;
    background: #cce5ff;
    border-left: 4px solid #007bff;
    border-radius: 4px;
    padding: 15px;
    margin-bottom: 25px;
    gap: 15px;
}

    .info-box .glyphicon {
        font-size: 25px;
        color: #007bff;
        flex-shrink: 0;
    }

    .info-box p {
        margin: 0;
        font-size: 13px;
        color: #004085;
    }

.form-group label {
    font-weight: bold;
    color: #555;
    font-size: 14px;
}

.form-control {
    border-radius: 6px;
    border: 1px solid #ddd;
    padding: 10px 15px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

    .form-control:focus {
        border-color: #f26522;
        box-shadow: 0 0 0 3px rgba(242,101,34,0.1);
    }

.form-group.has-error .form-control {
    border-color: #dc3545;
}

.btn-submit {
    display: block;
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #f26522, #e55b0e);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    margin-bottom: 10px;
}

    .btn-submit:hover {
        background: linear-gradient(135deg, #e55b0e, #d44e00);
        color: white;
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(242,101,34,0.4);
    }

.btn-back {
    display: block;
    width: 100%;
    padding: 12px;
    background: #f8f9fa;
    color: #555;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .btn-back:hover {
        background: #e9ecef;
        color: #333;
        text-decoration: none;
    }

.divider {
    display: flex;
    align-items: center;
    margin: 20px 0;
    color: #aaa;
    font-size: 13px;
}

    .divider::before,
    .divider::after {
        content: "";
        flex: 1;
        height: 1px;
        background: #eee;
    }

    .divider::before {
        margin-right: 10px;
    }

    .divider::after {
        margin-left: 10px;
    }

.contact-section {
    background: #f8f9fa;
    border-radius: 6px;
    padding: 20px;
    margin-top: 20px;
    text-align: center;
}

    .contact-section p {
        margin: 5px 0;
        font-size: 13px;
        color: #666;
    }

    .contact-section a {
        color: #f26522;
        text-decoration: none;
    }

        .contact-section a:hover {
            text-decoration: underline;
        }

@keyframes bounceIn {
    0% {
        transform: scale(0.3);
        opacity: 0;
    }

    50% {
        transform: scale(1.1);
    }

    70% {
        transform: scale(0.95);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}
