html {
    font-size: 14px;
    position: relative;
    min-height: 100%;
}

body {
    font-family: "Inter", serif;
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;
}

h5 {
    font-size: 34px;
}

@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;
}

.sw-input {
    padding: 10px 12px;
    border-radius: 6px;
    border-color: #D9D9D9;
    border-style: solid;
    border-width: 1px;
    width: 100%;
}

.title {
    color: #2E5F69;
    font-weight: bold !important;
}

.sw-button {
    background-color: #2E5F69 !important;
    border-color: #2E5F69 !important;
    color: #ffffff !important;
    border-radius: 8px;
    font-weight: 600 !important;
    padding: 0.6875rem 1.125rem;
}

.sw-button-secondary {
    background-color: rgba(46, 95, 105, 0.1) !important;
    border-style: none;
    border-radius: 8px;
    color: #2E5F69 !important;
    font-weight: 600 !important;
    padding: 0.6875rem 1.125rem;
}

label {
    color: #727272 !important;
}

.form-label {
    font-weight: 500;
}

.sign-in-button {
    width: 100%;
}

.text-danger {
    position: relative;
    top: 0.5rem;
    font-size: 14px;
    line-height: 1rem;
    color: #B00020 !important;
}

.input-validation-error {
    border-color: #B00020;
}

a {
    color: #2E5F69 !important;
}

.contact-administrator {
    font-weight: bold;
}

.alert-danger {
    background-color: #FFE1E1 !important;
    text-align: center;
    color: #B00020;
    border-color: #FFE1E1 !important;
}

.left-pane {
    justify-content: center; /* Center the image horizontally */
    overflow: hidden !important; /* Hide anything overflowing the div */
    height: 100%; /* Ensure div takes full available height */
}

.right-pane {
    padding-left: 8%;
    padding-right: 12%;
    background-color: rgba(255, 255, 255, 0.9);
}


.full-image {
  
    max-height: 100vh; /* Make sure image height does not exceed container */
    object-fit: contain; /* Ensure image maintains aspect ratio while fitting inside div */
}


/* Overlay for disabling the page */
.page-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent dark grey */
    z-index: 1000; /* Make sure it's on top of other content */
    display: none; /* Initially hidden */
}

/* Optional: you can also style a "loading" spinner or message */
.loading-message {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 20px;
    font-weight: bold;
}

/* style for environement badge in auth layout */
.badge-env {
    background-color: #ffedd5;
    color: #c2410c;
    top: 20px;
    left: 20px;
    font-size: 20px;
}

.full-background {
    background-image: url('../images/img-salesworks.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    width: 100%;
    position: relative;
}

/* Password toggle button styles */
.password-input-container {
    position: relative;
    display: flex;
    align-items: center;
}

.password-input-container input {
    padding-right: 40px;
}

/* Hide browser's native password reveal button */
.password-input-container input::-ms-reveal,
.password-input-container input::-ms-clear {
    display: none;
}

.password-input-container input::-webkit-credentials-auto-fill-button,
.password-input-container input::-webkit-caps-lock-indicator {
    display: none;
}

.password-toggle {
    position: absolute;
    right: 10px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #727272;
}

.password-toggle:focus {
    outline: none;
    box-shadow: none;
}

.password-toggle:hover {
    color: #2E5F69;
}

.password-toggle i {
    font-size: 18px;
}
