body {
    font-family: "Poppins", sans-serif;
    background: linear-gradient(135deg, #1f2937, #3b82f6, #06b6d4);
    background-size: 200% 200%;
    animation: gradientMove 10s ease infinite;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.auth-card {
    background: white;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    max-width: 400px;
    width: 100%;
    color: black;
    padding: 2.5rem;
}

.auth-logo img {
    width: 80px;
    height: auto;
    margin-bottom: 1rem;
}

.auth-title {
    font-weight: 700;
    font-size: 1.8rem;
}

.form-control {
    background: rgba(255, 255, 255, 0.2);
    color: black;
    padding: 0.9rem 1.2rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.3);
    box-shadow: none;
    /* outline: none; */
}

.form-control::placeholder {
    color: black;
}

.form-control-icon {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: black;
}

.btn-primary {
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    border: none;
    border-radius: 12px;
    font-weight: 600;
    padding: 0.9rem;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: scale(1.05);
    background: linear-gradient(135deg, #2563eb, #0891b2);
}

.text-gray {
    color: rgba(255, 255, 255, 0.7);
}

.auth-footer a {
    color: #06b6d4;
    text-decoration: none;
    font-weight: 600;
}

.auth-footer a:hover {
    color: #38bdf8;
}

@media (max-width: 576px) {
    body {
        padding: 1.5rem;
    }

    .auth-card {
        padding: 2rem;
    }
}

/* Toast container */
.toast-container {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 1055;
    color: red;
}

.toast {
    border-radius: 10px;
    overflow: hidden;
}
