@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

body {
    font-family: 'Plus+Jakarta+Sans', sans-serif !important;
    background-color: #fcfcfc;
    background-image: 
        radial-gradient(at 100% 100%, rgba(99, 102, 241, 0.08) 0, transparent 50%), 
        radial-gradient(at 0% 0%, rgba(129, 140, 248, 0.08) 0, transparent 50%),
        radial-gradient(at 100% 0%, rgba(167, 139, 250, 0.06) 0, transparent 50%),
        radial-gradient(at 0% 100%, rgba(244, 114, 182, 0.06) 0, transparent 50%);
    background-attachment: fixed;
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    background-image: radial-gradient(#000000 0.5px, transparent 0.5px);
    background-size: 32px 32px;
    opacity: 0.04;
    z-index: -1;
    pointer-events: none;
}

#auth-container-parent {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

#auth-container {
    background-color: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 2.5rem !important;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1) !important;
    max-width: 420px !important;
    height: auto !important;
    padding: 3.5rem 2.5rem !important;
    margin: 1.5rem !important;
}

#auth-heading-container a img {
    content: url('/storage/auth/favicon.png') !important;
    height: 64px !important;
    width: auto !important;
    margin-bottom: 0.5rem !important;
}

#auth-heading-title {
    font-weight: 800 !important;
    letter-spacing: -0.05em !important;
    color: #09090b !important;
    font-size: 2rem !important;
    text-align: center;
    padding-top: 0 !important;
}

#auth-heading-description {
    color: #71717a !important;
    font-weight: 500 !important;
    margin-top: 0.75rem !important;
    opacity: 0.8 !important;
}

/* Form Elements */
label.auth-component-input {
    background-color: transparent !important;
}

label.auth-component-input-label-focused {
    background-color: #ffffff !important;
    padding: 0 0.4rem !important;
    margin-left: 0.6rem !important;
    font-weight: 700 !important;
}

input[type="email"], 
input[type="password"], 
input[type="text"] {
    border-radius: 1.25rem !important;
    border: 1px solid #e4e4e7 !important;
    background-color: #f4f4f5 !important;
    padding: 0.875rem 1.25rem !important;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1) !important;
    font-size: 0.875rem !important;
}

input:focus {
    background-color: #ffffff !important;
    border-color: #09090b !important;
    box-shadow: 0 0 0 3px rgba(9, 9, 11, 0.05) !important;
    outline: none !important;
}

/* Labels */
label {
    font-weight: 600 !important;
    color: #3f3f46 !important;
    font-size: 0.875rem !important;
    margin-bottom: 0.375rem !important;
    display: block !important;
}

/* Button */
button[data-auth="submit-button"] {
    border-radius: 1.25rem !important;
    background-color: #09090b !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    padding: 1rem 1.5rem !important;
    width: 100% !important;
    margin-top: 1rem !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    border: none !important;
    cursor: pointer !important;
    font-size: 0.9375rem !important;
}

button[data-auth="submit-button"]:hover {
    background-color: #27272a !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.15) !important;
}

button[data-auth="submit-button"]:active {
    transform: translateY(0);
}

/* Social Providers */
[data-auth="social-provider-button"] {
    border-radius: 1.25rem !important;
    border: 1.5px solid #e4e4e7 !important;
    padding: 0.75rem !important;
    transition: all 0.2s ease !important;
    background-color: #ffffff !important;
}

[data-auth="social-provider-button"]:hover {
    background-color: #f4f4f5 !important;
    border-color: #d4d4d8 !important;
}

/* Links */
a[data-auth="register-link"], 
a[data-auth="forgot-password-link"],
.text-blue-500 {
    color: #09090b !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    transition: all 0.2s ease !important;
    opacity: 1 !important;
}

a[data-auth="register-link"]:hover, 
a[data-auth="forgot-password-link"]:hover {
    text-decoration: underline !important;
    opacity: 0.7 !important;
}

/* Message styling */
[role="alert"] {
    border-radius: 1rem !important;
    font-weight: 500 !important;
}