html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body.login-page {
    background: linear-gradient(135deg, #02abe7 0%, #14327a 100%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.card {
    border-radius: 1.5rem;
}

.dark-blue{
    background: #14327a;
}
.btn-primary {
    border-radius: 50px;
    transition: all 0.3s ease;
    background: #14327a;
}

.btn-primary:hover {
    transform: scale(1.05);
}

.form-control {
    border-radius: 1rem;
}
.dropdown-menu .form-check {
    padding: 6px 10px;
    border-radius: 6px;
    transition: background-color 0.2s ease;
}

.dropdown-menu .form-check:hover {
    background-color: #f8f9fa;
}

.form-check-input {
    margin-left: 4px !important;
}

.form-check-label {
    cursor: pointer;
}
