html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}

.card {
    border: none;
    border-radius: 0.35rem;
    box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15);
    margin-bottom: 1.5rem;
}

.card-header {
    background-color: #f8f9fc;
    border-bottom: 1px solid #e3e6f0;
    padding: 1rem 1.35rem;
    font-weight: 600;
}

.card-body {
    padding: 1.25rem;
}

.bg-primary {
    background-color: #4e73df !important;
}

.bg-success {
    background-color: #1cc88a !important;
}

.bg-info {
    background-color: #36b9cc !important;
}

.bg-warning {
    background-color: #f6c23e !important;
}


.login-page {
    background-color: #f8f9fa;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-container {
    width: 100%;
    max-width: 1000px;
    padding: 20px;
}

.login-card {
    display: flex;
    background: white;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.login-image {
    flex: 1;
    display: none; /* Hidden on mobile */
}

    .login-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.login-form {
    flex: 1;
    padding: 40px;
}

.login-logo {
    max-width: 150px;
    margin-bottom: 20px;
}

/* Responsive styles */
@media (min-width: 768px) {
    .login-image {
        display: block;
    }

    .login-form {
        padding: 60px;
    }
}

/* Form styles */
.form-control {
    height: 45px;
    border-radius: 5px;
    border: 1px solid #e0e0e0;
}

.btn-primary {
    height: 45px;
    border-radius: 5px;
    background-color: #4e73df;
    border: none;
}

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

a {
    color: #4e73df;
    text-decoration: none;
}

    a:hover {
        text-decoration: underline;
    }

.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 24px;
}

    .slider:before {
        position: absolute;
        content: "";
        height: 18px;
        width: 18px;
        left: 3px;
        bottom: 3px;
        background-color: white;
        transition: 0.4s;
        border-radius: 50%;
    }

input:checked + .slider {
    background-color: #dd3b70; /* green for active */
}

    input:checked + .slider:before {
        transform: translateX(26px);
    }

.bootbox .modal-header {
    color: #dd3b70;
}

