.auth-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.auth-card {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 0, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    width: 100%;
    max-width: 450px;
    position: relative;
    overflow: hidden;
}

.auth-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(45deg, rgba(0, 255, 0, 0.1), rgba(0, 255, 0, 0.2));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #00FF00;
    text-decoration: none;
    margin-bottom: 1.5rem;
    display: block;
}

.auth-header h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(to right, #fff 0%, #efefef 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.auth-header p {
    color: #999;
    font-size: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #fff;
    font-size: 0.9rem;
}

.form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 0, 0.2);
    border-radius: 10px;
    padding: 0.8rem 1rem;
    color: #fff;
    width: 100%;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: #00FF00;
    box-shadow: 0 0 0 2px rgba(0, 255, 0, 0.1);
    background: rgba(255, 255, 255, 0.1);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.checkbox-container {
    display: flex;
    align-items: center;
    color: #999;
    cursor: pointer;
    font-size: 0.9rem;
}

.checkbox-container input {
    margin-right: 0.5rem;
}

.forgot-password {
    color: #00FF00;
    text-decoration: none;
    font-size: 0.9rem;
}

.forgot-password:hover {
    text-decoration: underline;
}

.auth-button {
    width: 100%;
    padding: 1rem;
    background: #00FF00;
    color: black;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.auth-button:hover {
    background: #00CC00;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 255, 0, 0.2);
}

.auth-footer {
    text-align: center;
    margin-top: 2rem;
    color: #999;
}

.auth-footer a {
    color: #00FF00;
    text-decoration: none;
}

.auth-footer a:hover {
    text-decoration: underline;
}

@media (max-width: 480px) {
    .auth-card {
        padding: 2rem;
    }
    
    .form-options {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
}

/* Auth Form Container */
.auth-form {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 255, 0, 0.1);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    margin-top: 2rem;
}

.auth-form h2 {
    color: #fff;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

/* Form Controls */
.form-control {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 255, 0, 0.2);
    color: #fff;
    padding: 0.8rem 1rem;
    border-radius: 8px;
}

.form-control:focus {
    background: rgba(0, 0, 0, 0.4);
    border-color: #00FF00;
    box-shadow: 0 0 0 0.2rem rgba(0, 255, 0, 0.15);
    color: #fff;
}

/* Labels */
.form-label {
    color: #fff;
    margin-bottom: 0.5rem;
}

/* Submit Button */
.btn-primary {
    background: #00FF00;
    border: none;
    color: #000;
    padding: 0.8rem;
    border-radius: 50px;
    font-weight: 600;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #00CC00;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 255, 0, 0.2);
}

/* Alert Messages */
.alert {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 255, 0, 0.2);
    color: #fff;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.alert-danger {
    border-color: rgba(255, 0, 0, 0.3);
    background: rgba(255, 0, 0, 0.1);
}

.alert-success {
    border-color: rgba(0, 255, 0, 0.3);
    background: rgba(0, 255, 0, 0.1);
}

/* Links */
.auth-form a {
    color: #00FF00;
    text-decoration: none;
    transition: all 0.3s ease;
}

.auth-form a:hover {
    color: #00CC00;
    text-decoration: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .auth-form {
        margin: 1rem;
        padding: 1.5rem;
    }
}

/* Add after .form-group styles */
.consent-group {
    margin-bottom: 1.5rem;
}

.consent-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
}

.consent-item input[type="checkbox"] {
    margin-top: 0.3rem;
}

.consent-item label {
    color: #999;
    font-size: 0.9rem;
    line-height: 1.4;
}

.consent-item a {
    color: #00FF00;
    text-decoration: none;
}

.consent-item a:hover {
    text-decoration: underline;
} 