@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
}

input[type="text"]::-webkit-outer-spin-button,
input[type="text"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
/* Animation for inputs */
input[type="text"],
input[type="email"],
input[type="tel"] {
    transition: all 0.2s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus {
border-color: #6366f1;
    box-shadow: 0 0 0 1px #6366f1;
}
/* Modern auth methods styling */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.auth-method {
    animation: fadeIn 0.3s ease forwards;
    opacity: 0;
    border-radius: 12px;
    background: white;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.auth-method:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border-color: #c7d2fe;
}

.method-icon {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    border-radius: 10px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.method-icon i {
    width: 20px;
    height: 20px;
    stroke-width: 2;
}

/* Ensure icons are properly aligned */
[data-feather] {
    vertical-align: middle;
}
.primary-badge {
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
    color: white;
}

.secondary-badge {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    color: white;
}

.auth-method:nth-child(1) { animation-delay: 0.1s; }
.auth-method:nth-child(2) { animation-delay: 0.2s; }
.auth-method:nth-child(3) { animation-delay: 0.3s; }
.auth-method:nth-child(4) { animation-delay: 0.4s; }
.auth-method:nth-child(5) { animation-delay: 0.5s; }
.auth-method:nth-child(6) { animation-delay: 0.6s; }
.auth-method:nth-child(7) { animation-delay: 0.7s; }
.auth-method:nth-child(8) { animation-delay: 0.8s; }
/* Code verification inputs */
#codeVerificationStep input {
    transition: all 0.2s ease;
}

#codeVerificationStep input:focus {
    border-color: #6366f1;
    box-shadow: 0 0 0 1px #6366f1;
    outline: none;
}
