/* Center the card, give it rounded corners and a subtle shadow */
.registration-card {
    max-width: 600px;
    margin: 0 auto;               /* horizontally center */
    background: #ffffff;
    border-radius: 1rem;
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.05);
    padding: 2rem;
}

/* Page heading */
.registration-card h2 {
    font-weight: 600;
    margin-bottom: 1.5rem;
}

/* Primary button style to match your blue */
.btn-primary {
    background-color: #4F6DF5;
    border-color: #4F6DF5;
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
}

.btn-primary:hover {
    background-color: #3E5CD9;
    border-color: #3E5CD9;
}

/* Form labels */
.form-label {
    font-weight: 500;
    font-size: 0.9rem;
}

/* Input fields */
.form-control, .form-select {
    border-radius: 0.75rem;
    padding: 0.75rem 1rem;
}

/* Eye icon area – you can replace with your SVG */
.password-toggle {
    position: relative;
}
.password-toggle input[type="password"] {
    padding-right: 3rem;
}
.password-toggle .toggle-icon {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

/* Checkbox label link styles */
.form-check-label a {
    color: #4F6DF5;
    text-decoration: none;
}
.form-check-label a:hover {
    text-decoration: underline;
}
/* home page layout */
#wrapper {
    min-height: 100vh;
}

#sidebar {
    background: #435d78;
}

#sidebar .nav-link {
    color: rgba(255,255,255,0.8);
}
#sidebar .nav-link.active,
#sidebar .nav-link:hover {
    background: rgba(255,255,255,0.2);
    color: #fff;
}

#page-content {
    background: #f8f9fa;
}

/* override Bootstrap card spacing */
.card {
    border: none;
    border-radius: 0.75rem;
}
.card-body small {
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
}

/* subcategory selector */
#subcategory-select {
    max-width: 400px;
}

/* tables */
.table-hover tbody tr:hover {
    background-color: #f1f1f1;
}
