﻿.register-header {
    background-color: #f8f9fa;
    padding: 3rem 0;
    margin-bottom: 2rem;
    border-bottom: 1px solid #dee2e6;
}

.register-card {
    transition: all 0.3s ease;
    border: none;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    margin-bottom: 3rem;
    background-color: white;
}

.register-card-body {
    padding: 2.5rem;
}

.register-title {
    color: #8b0000;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}

.form-label {
    font-weight: 600;
    color: #495057;
}

.form-control {
    border-radius: 6px;
    padding: 0.75rem 1rem;
    margin-bottom: 1.25rem;
    border: 1px solid #ced4da;
}

    .form-control:focus {
        border-color: #8b0000;
        box-shadow: 0 0 0 0.25rem rgba(139, 0, 0, 0.25);
    }

.register-btn {
    background-color: #8b0000;
    color: white;
    font-weight: 600;
    padding: 0.75rem;
    border: none;
    border-radius: 6px;
    width: 100%;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

    .register-btn:hover {
        background-color: #d63384;
        transform: translateY(-2px);
    }

.login-link {
    text-align: center;
    margin-top: 1.5rem;
    color: #6c757d;
}

    .login-link a {
        color: #8b0000;
        font-weight: 600;
        text-decoration: none;
    }

        .login-link a:hover {
            text-decoration: underline;
        }

.form-check-input:checked {
    background-color: #8b0000;
    border-color: #8b0000;
}

.form-check-label {
    color: #495057;
}

.terms-link {
    color: #8b0000;
    text-decoration: none;
}

    .terms-link:hover {
        text-decoration: underline;
    }
