﻿.identity-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: none
}

.card {
    max-width: 500px;
    width: 100%;
}

.btn-primary {
    background: #4facfe;
    border: none;
    transition: all 0.3s ease;
}

    .btn-primary:hover {
        background: #007bff;
    }

.text-success {
    font-weight: bold;
}

.alert-danger {
    font-size: 0.9rem;
}

.text-primary {
    font-weight: bold;
}

.email-icon i {
    font-size: 5rem;
    color: #ff7f50;
}

.form-control:focus {
    box-shadow: 0 0 10px rgba(255, 127, 80, 0.5);
    border-color: #ff4500;
}

#forgot-password:hover {
    color: #ff7f50 !important;
}

.bg-gradient {
    background: linear-gradient(to right, #4facfe, #00f2fe);
}

.btn-gradient {
    background: linear-gradient(to right, #ff9966, #ff5e62);
    border: none;
    color: #fff;
    font-weight: bold;
    transition: all 0.3s ease;
}

    .btn-gradient:hover {
        background: linear-gradient(to right, #ff5e62, #ff9966);
        box-shadow: 0px 5px 15px rgba(255, 94, 98, 0.4);
    }

.shadow-lg {
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
}