html,
body {
    font-family: "Source Sans Pro", sans-serif;
    background: none;
    height: 100%;
    margin: 0;
    position: relative;
}

.sidebar {
    height: 100vh;
    width: 100%;
    background-color: #ffffff;
}

.main-content {
    padding-top: 20px;
    background: url('../assets/images/bg_login.webp') no-repeat center center;
    filter: blur(10px);
    opacity: 0.5;
    background-size: cover;
    width: 100%;
    height: 100vh;
}

.form-signin {
    border-radius: 5px;
    padding: 20px;
    width: 90%;
    max-width: 400px;
    margin: 0 auto;
}

.btn-success {
    background: #f0582a !important;
    border-color: #002238 !important;
}

.btn-danger {
    background-color: #f46414;
}

.btn-success:hover {
    background: #FCAE17 !important;
    color: #ff7b00ff !important;
    border-color: #FCAE17 !important;
}

.btn-warning {
    background: #efb813 !important;
    border-color: #efb813 !important;
}

.btn-warning:hover {
    background: #d7a611 !important;
}

h1 {
    font-size: 60px;
    color: #fff;
}

h6 {
    color: #fff !important;
    font-weight: bold;
    display: inline-block;
    width: 100%;
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    outline: none;
}

#npcSeal {
    cursor: pointer;
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
}

#npcSeal:hover {
    opacity: 0.5;
}

.custom-input {
    background-color: #8dc541 !important;
    color: #000 !important;
    padding: 10px 20px;
    font-size: 16px;
}

.password {
    color: #007bff !important;
}

#togglePassword:hover {
    cursor: pointer;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content {
    background: #fff;
    padding: 20px;
    border-radius: 5px;
}

.modal-overlay img {
    max-width: 100%;
    max-height: 100%;
}

@media (max-width: 600px),
(min-width: 601px) and (max-width: 768px),
(min-width: 769px) and (max-width: 992px) {
    .main-content {
        padding: 0;
        background: none;
        height: auto;
    }

    .sidebar {
        padding: 10px;
        background-color: rgba(255, 255, 255, 0.8);
    }

    .form-signin {
        width: 100%;
        max-width: none;
    }
}