@import url("../../animations.css");

body {
    /* background: linear-gradient(135deg, #1a73e8, #0d47a1); */
    background-size: cover;
    font-family: "Poppins", sans-serif;
}

.auth-card {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(8px);
    border: 0.5px dotted var(--secondary-color-less-opacity);
    outline: 0.25px inset var(--primary-color-glass-opacity);
    animation: fadeIn 0.4s ease;
}

.nav-pills .nav-link {
    border-radius: 10px;
    color: #555;
    transition: 0.3s;
}

.nav-pills .nav-link.active {
    background: #1a73e8;
    color: #fff;
    box-shadow: 0 4px 10px rgba(26, 115, 232, 0.4);
}

.auth-form {
    animation: slideFade 0.4s ease;
}

.form-control {
    border-radius: 8px;
    padding: 10px 12px;
}

.form-control:focus {
    box-shadow: 0 0 0 0.2rem rgba(26, 115, 232, 0.25);
    border-color: #1a73e8;
}

.btn-primary {
    background: linear-gradient(135deg, #1a73e8, #0d47a1);
    border: none;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 115, 232, 0.4);
}

/** Verify Email - Styles {START}  */
/* Card max width */
.verify-card {
    max-width: 480px;
    animation: fadeIn 0.8s ease forwards;
    opacity: 0;
}
/** Verify Email - Styles {END}  */
