/* MinexCard Admin - Login Page Styles */

body {
    background-color: #4e73df;
    background-image: linear-gradient(180deg, #4e73df 10%, #224abe 100%);
    background-size: cover;
}

.card {
    border: none;
    border-radius: 1rem;
    box-shadow: 0 0.5rem 1rem 0 rgba(0, 0, 0, 0.1);
}

.card-body {
    padding: 2rem;
}

.bg-login-image {
    background: url('../images/login-bg.jpg');
    background-position: center;
    background-size: cover;
    border-top-left-radius: .5rem;
    border-bottom-left-radius: .5rem;
}

h1.h4 {
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.form-control-user {
    font-size: 0.8rem;
    border-radius: 10rem;
    padding: 1.5rem 1rem;
}

.btn-user {
    font-size: 0.8rem;
    border-radius: 10rem;
    padding: 0.75rem 1rem;
    font-weight: 700;
}

.btn-user.btn-block {
    width: 100%;
}

.btn-primary {
    background-color: #4e73df;
    border-color: #4e73df;
}

.btn-primary:hover {
    background-color: #2e59d9;
    border-color: #2653d4;
}

.small {
    font-size: 80%;
    font-weight: 400;
}

.custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {
    background-color: #4e73df;
    border-color: #4e73df;
}

.custom-checkbox .custom-control-label::before {
    border-radius: 0.25rem;
}

.form-group {
    margin-bottom: 1rem;
}

.text-center {
    text-align: center !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .bg-login-image {
        display: none;
    }
}