.forgot-container {
    background-color: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    width: 100%;
    max-width: 400px;
    margin: auto;
}

.forgot-title {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #333;
    font-weight: 600;
}

.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    color: #555;
    font-size: 0.95rem;
}

input {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

input:focus {
    outline: none;
    border-color: #4CAF50;
    box-shadow: 0 0 0 2px rgba(76, 175, 80, 0.1);
}

input::placeholder {
    color: #aaa;
}

.submit-button {
    width: 100%;
    padding: 0.9rem;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
    font-weight: 500;
}

.submit-button:hover {
    background-color: #45a049;
}

.back-button {
    display: inline-block;
    padding: 0.5rem 1rem;
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-align: right;
}

.back-button:hover {
    background-color: #f5f5f5;
    color: #333;
}

.error-message {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.375rem;
    display: block;
}

.forgot-password {
    display: block;
    text-align: right;
    margin-top: 1rem;
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
}

.forgot-password:hover {
    color: #4CAF50;
}
@media (max-width: 480px) {
    .forgot-container {
        padding: 1.5rem;
    }

    .forgot-title {
        font-size: 1.3rem;
    }
}
