/* Auth page container */
.auth-container {
    min-height: calc(100vh - 40px);
    padding: 2rem 0;
    display: flex;
    align-items: center;
}

.card {
    border-radius: 20px;
    background: var(--card-bg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: none;
    backdrop-filter: blur(10px);
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.card-body {
    padding: 2.5rem;
}

/* Form Styles */
.form-group {
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
}

.form-label {
    color: var(--secondary-color);
    font-weight: 500;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.form-control {
    border-radius: 10px;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    height: 50px;
    font-size: 1rem;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(74, 144, 226, 0.25);
    background: white;
}

/* Auth-specific Button Styles */
.btn-primary {
    background: linear-gradient(45deg, #4a90e2, #357abd);
    border: none;
    padding: 0.9rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    width: 100%;
    margin-top: 1rem;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 144, 226, 0.3);
    background: linear-gradient(45deg, #357abd, #4a90e2);
}

/* Registration Type Page */
.registration-type .text-muted {
    color: #6c757d !important;
}

.registration-type .text-muted-description {
    color: #6c757d !important;
    line-height: 1.6;
}

.registration-type .card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.registration-type .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.registration-type .auth-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
}

.registration-type .auth-link:hover {
    text-decoration: underline;
    color: #e6f0ff;
}

.registration-type .btn-primary {
    background: linear-gradient(45deg, #4a90e2, #357abd);
    color: white;
    border: none;
    padding: 0.9rem 1.5rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    min-width: 200px;
    margin-top: 1.5rem;
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.25);
}

.registration-type .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(74, 144, 226, 0.35);
    background: linear-gradient(45deg, #357abd, #4a90e2);
    color: white;
}

.registration-type .card-body {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.registration-type .card-icon {
    color: #4a90e2;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.registration-type .benefits-list {
    margin: 1.5rem 0;
    padding: 0;
    list-style: none;
    flex-grow: 1;
}

.registration-type .benefits-list li {
    margin-bottom: 0.85rem;
    color: #495057;
    position: relative;
    padding-left: 2rem;
    line-height: 1.5;
    font-size: 0.95rem;
}

.registration-type .benefits-list li:before {
    content: '•';
    color: #4a90e2;
    position: absolute;
    left: 0.5rem;
    font-size: 1.5rem;
    line-height: 1;
}

/* Auth-specific Alert Styles */
.alert {
    border-radius: 10px;
    border: none;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.alert-danger {
    background: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
}

.alert-success {
    background: rgba(46, 204, 113, 0.1);
    color: #2ecc71;
}

/* Auth-specific Warning Styles */
.alert-warning {
    background-color: rgba(255, 193, 7, 0.1);
    color: #ffc107;
}

.alert-info {
    background-color: rgba(74, 144, 226, 0.1);
    color: #4a90e2;
}

/* Error Messages */
.errorlist {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 0 0;
    color: #dc3545;
    font-size: 0.875rem;
}

.invalid-feedback {
    color: #dc3545;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* Auth Page Responsive Design */
@media (max-width: 768px) {
    .auth-container {
        padding: 1rem;
    }

    .card-body {
        padding: 1.5rem;
    }
} 