/* Login Page Styles */
body {
    background: #0f0f0f;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.login-card {
    max-width: 480px;
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    background: #1a1a1a;
    border: none;
    animation: fadeIn 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card-header-custom {
    background: #242424;
    padding: 48px 40px 36px;
    text-align: center;
    border-bottom: 1px solid #2a2a2a;
}

.logo-circle {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8a65 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.logo-circle i,
.logo-circle .material-icons {
    color: white;
    font-size: 36px;
}

.card-header-custom h4 {
    color: #ffffff;
    font-weight: 400;
    margin-bottom: 8px;
    font-size: 28px;
}

.card-header-custom p {
    color: #b0b0b0;
    font-size: 16px;
    margin-bottom: 0;
}

.card-body-custom {
    padding: 40px;
    background: #1a1a1a;
}

.form-outline {
    margin-bottom: 24px;
}

.form-outline .form-label {
    color: #b0b0b0;
}

.btn-primary-custom {
    background: #ff6b35;
    border: none;
    border-radius: 24px;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.25px;
    width: 100%;
    color: #fff !important;
    box-shadow: 0 1px 2px rgba(60, 64, 67, 0.3), 0 1px 3px 1px rgba(60, 64, 67, 0.15);
    transition: all 0.2s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.btn-primary-custom:hover {
    background: #ff5722;
    color: #fff !important;
    box-shadow: 0 1px 3px rgba(60, 64, 67, 0.3), 0 4px 8px 3px rgba(60, 64, 67, 0.15);
}

.btn-primary-custom:active,
.btn-primary-custom:focus {
    background: #e64a19;
    color: #fff !important;
    box-shadow: 0 1px 2px rgba(60, 64, 67, 0.3), 0 1px 3px 1px rgba(60, 64, 67, 0.15);
}

.forgot-link {
    color: #ff6b35;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 8px;
    border-radius: 4px;
}

.forgot-link:hover {
    background: #ffe0d6;
    color: #d84315;
}

.forgot-link i,
.forgot-link .material-icons {
    font-size: 14px;
}

.card-footer-custom {
    background: #242424;
    padding: 24px 40px;
    text-align: center;
    border-top: 1px solid #2a2a2a;
}

.card-footer-custom p {
    color: #b0b0b0;
    font-size: 14px;
    margin-bottom: 12px;
}

.register-link {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 20px;
}

.register-link:hover {
    background: #ffe0d6;
    color: #d84315;
}

.divider-text {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 24px 0;
}

.divider-text::before,
.divider-text::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #dadce0;
}

.divider-text span {
    padding: 0 16px;
    color: #5f6368;
    font-size: 14px;
}

@media (max-width: 576px) {
    .card-header-custom {
        padding: 36px 24px 28px;
    }

    .card-body-custom {
        padding: 32px 24px;
    }

    .card-footer-custom {
        padding: 20px 24px;
    }

    .login-card {
        border-radius: 16px;
    }
}

/* Custom Toast Notification */
.custom-toast {
    position: fixed;
    bottom: 24px;
    right: 24px;
    min-width: 300px;
    max-width: 400px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), 0 8px 24px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transform: translateX(450px);
    transition: transform 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    z-index: 9999;
}

.custom-toast.show {
    transform: translateX(0);
}

.custom-toast-header {
    background: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
    color: white;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.custom-toast-header .material-icons {
    font-size: 20px;
}

.custom-toast-body {
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #202124;
    font-size: 14px;
}

.custom-toast-body .material-icons {
    color: #4caf50;
    font-size: 20px;
}

@media (max-width: 576px) {
    .custom-toast {
        right: 16px;
        left: 16px;
        min-width: auto;
        transform: translateY(150px);
    }
    
    .custom-toast.show {
        transform: translateY(0);
    }
}
