/* Auth pages */
.auth-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: #f8f9fa;
}

.auth-card {
    border: none;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, .15);
    border-radius: 0.5rem;
}

.auth-header {
    text-align: center;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, .125);
}

.auth-body {
    padding: 1.5rem;
}

.auth-footer {
    text-align: center;
    padding: 1rem 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, .125);
}

.btn-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.5rem;
    margin-bottom: 0.5rem;
}

.btn-social i {
    margin-right: 0.5rem;
}

.divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 1rem 0;
    color: #6c757d;
}

.divider::before,
.divider::after {
    content: "";
    flex: 1;
    border-bottom: 1px solid #dee2e6;
}

.divider::before {
    margin-right: 0.5rem;
}

.divider::after {
    margin-left: 0.5rem;
}


  .registration-container {
            background-color: #f8f9fa;
            font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            color: #495057;
            line-height: 1.6;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        .registration-main {
            flex: 1;
            display: flex;
            align-items: center;
            padding: 2rem 0;
        }

        .registration-card {
            border: none;
            border-radius: 12px;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            width: 100%;
            max-width: 450px;
            margin: 0 auto;
        }

        .registration-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
        }

        .registration-card-body {
            padding: 2.5rem;
        }

        .registration-card-footer {
            background-color: transparent;
            border-top: 1px solid rgba(0, 0, 0, 0.05);
            padding: 1.5rem 2.5rem;
            text-align: center;
        }

        .registration-form .form-control {
            height: 48px;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            padding: 0.75rem 1rem;
            font-size: 0.95rem;
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
        }

        .registration-form .form-control:focus {
            border-color: #4e73df;
            box-shadow: 0 0 0 0.25rem rgba(78, 115, 223, 0.15);
        }

        .registration-form-label {
            font-weight: 500;
            margin-bottom: 0.5rem;
            color: #343a40;
        }

        .registration-btn {
            background-color: #4e73df;
            border: none;
            border-radius: 8px;
            padding: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.5px;
            transition: background-color 0.3s ease, transform 0.2s ease;
            width: 100%;
        }

        .registration-btn:hover {
            background-color: #3a5bd9;
            transform: translateY(-2px);
        }

        .registration-btn:active {
            transform: translateY(0);
        }

        .registration-alert {
            border-radius: 8px;
            padding: 1rem;
            margin-bottom: 1.5rem;
        }

        .registration-alert-danger {
            background-color: #fee2e1;
            border-color: #fdcac8;
            color: #dc3545;
        }

        .registration-alert-success {
            background-color: #e1f9ee;
            border-color: #c1f0d9;
            color: #28a745;
        }

        .registration-logo-container {
            margin-bottom: 1.5rem;
            text-align: center;
        }

        .registration-logo {
            height: 50px;
            transition: transform 0.3s ease;
        }

        .registration-logo:hover {
            transform: scale(1.05);
        }

        .registration-title {
            color: #2c3e50;
            margin-top: 1rem;
            font-weight: 600;
        }

        .registration-footer-text {
            color: #6c757d;
            font-size: 0.9rem;
        }

        .registration-footer-link {
            color: #4e73df;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .registration-footer-link:hover {
            color: #3a5bd9;
            text-decoration: underline;
        }

        .registration-terms-text {
            color: #6c757d;
            font-size: 0.85rem;
            margin-top: 1rem;
        }

        /* Animations */
        @keyframes registrationFadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .registration-form-group {
            margin-bottom: 1.5rem;
            animation: registrationFadeIn 0.5s ease-out;
        }

        /* Responsive Adjustments */
        @media (max-width: 767.98px) {
            .registration-card-body {
                padding: 2rem;
            }
            
            .registration-card-footer {
                padding: 1.25rem 2rem;
            }
        }

        @media (max-width: 575.98px) {
            .registration-card-body {
                padding: 1.5rem;
            }
            
            .registration-card-footer {
                padding: 1rem 1.5rem;
            }
        }