/* assets/css/auth.css */
body {
    font-family: 'Inter', sans-serif;
    background-color: #FAFAFC;
    /* Very light gray/white background */
    overflow-x: hidden;
}

.glass-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.05);
    border-radius: 1.5rem;
}

.input-field {
    background-color: #ffffff;
    border: 1px solid #E2E8F0;
    border-radius: 0.5rem;
    color: #1e293b;
    transition: all 0.3s ease;
}

.input-field:focus-within {
    border-color: #6039D6;
    box-shadow: 0 0 0 3px rgba(96, 57, 214, 0.1);
}

.input-field input {
    background: transparent;
    outline: none;
    width: 100%;
}

.input-field input::placeholder {
    color: #94A3B8;
}

/* Large Purple Blob */
.purple-blob {
    position: absolute;
    left: -10vw;
    bottom: -20vh;
    width: 45vw;
    height: 140vh;
    background: #6039D6;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    transform: rotate(-15deg);
    z-index: 0;
    transition: all 0.5s ease;
}

@media (max-width: 1024px) {
    .purple-blob {
        width: 150vw;
        height: 75vh;
        left: -25vw;
        top: -20vh;
        bottom: auto;
        transform: rotate(0deg);
        border-radius: 0 0 50% 50%;
    }
}

/* Subtle dotted path line for background */
.bg-path {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.4;
    pointer-events: none;
}
