/* Authentication Pages (Login/Signup) */

/* The Auth Card (Glassmorphism) */
.auth-card {
    background: rgba(20, 20, 20, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    overflow: hidden;
    backdrop-filter: blur(20px);
    /* No fixed width/height - let Bootstrap grid handle sizing */
}

/* Header Styles */
.auth-header {
    padding: 2.5rem 2rem 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.invite-flag {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 16px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.auth-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.auth-subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.5;
}

.highlight-name {
    color: #00FF41;
    font-weight: 600;
}

/* Body & Form Styles */
.auth-body {
    padding: 2rem;
}

/* Modernize Crispy Forms Inputs */
.form-group {
    margin-bottom: 1.25rem;
}

.form-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.5rem;
}

.textInput, .emailInput, .passwordInput {
    background-color: rgba(0, 0, 0, 0.3) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: white !important;
    border-radius: 8px !important;
    padding: 0.75rem 1rem !important;
    font-size: 1rem !important;
    transition: all 0.2s ease;
}

.textInput:focus, .emailInput:focus, .passwordInput:focus {
    background-color: rgba(0, 0, 0, 0.5) !important;
    border-color: #00FF41 !important;
    box-shadow: 0 0 0 3px rgba(0, 255, 65, 0.1) !important;
}

/* Hide the asterisk */
.asteriskField { display: none; }

/* Footer Links */
.auth-footer {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

.auth-link {
    color: white;
    text-decoration: none;
    font-weight: 600;
    margin-left: 0.25rem;
}
.auth-link:hover {
    text-decoration: underline;
    color: #00FF41;
}