/* Login Page Styles */
body {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.card {
    border: none;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.95);
}

.card-body {
    padding: 2.5rem !important;
}

.input-group-text {
    background-color: transparent;
    border-right: none;
}

.input-group .form-control {
    border-left: none;
}

.input-group .form-control:focus {
    box-shadow: none;
    border-color: #ced4da;
}

.input-group-text:last-child {
    border-left: none;
    border-right: 1px solid #ced4da;
    cursor: pointer;
}

.btn-primary {
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, #0056b3 0%, #00a0e3 100%);
    border: none;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    background: linear-gradient(135deg, #004a9f 0%, #0090d4 100%);
}

.form-check-input:checked {
    background-color: #0056b3;
    border-color: #0056b3;
}

.text-primary {
    color: #0056b3 !important;
}

a {
    transition: all 0.3s ease;
}

a:hover {
    color: #00a0e3 !important;
}

.alert {
    border-radius: 10px;
    border: none;
    background-color: #dc3545;
    color: white;
}

.cursor-pointer {
    cursor: pointer;
}
