* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
}

body {
    font-size: 14px;
    letter-spacing: 0.5px;
    overflow-x: hidden;
    color: rgb(255 255 255 / 70%);
}

/* LOGIN LAYOUT */
body.bg-theme2 {
    background-image: url(https://codervent.com/dashtreme/demo/horizontal/assets/images/bg-themes/2.png);
}

.bg-theme {
    background-size: 100% 100%;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    transition: background 0.2s ease-in-out 0s;
}

.wrapper {
    width: 100%;
    height: 100vh;
    position: relative;
}

.section-authentication-cover {
    display: flex;
    width: 100%;
    height: 100vh;
    align-items: center;
}

.auth-cover-left {
    display: flex;
    min-height: 100vh;
}

.card {
    background-color: rgb(0 0 0 / 20%);
    box-shadow: 0 0.3rem 0.8rem rgba(0, 0, 0, 0.12);
    margin-bottom: 1.5rem;
    border: 0 solid transparent;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.auth-cover-right {
    display: flex;
    min-height: 100vh;
}

.bg-light {
    background-color: rgb(255 255 255 / 15%) !important;
}

.form-control {
    color: #ffffff;
    background-color: rgb(0 0 0 / 15%);
    border: 1px solid rgb(255 255 255 / 15%);
}

.form-control:focus {
    color: #ffffff;
    background-color: rgb(0 0 0 / 15%);
    border: 1px solid rgb(255 255 255 / 15%);
}

.input-group {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    width: 100%;
}

.input-group-text {
    color: #ffffff;
    background-color: rgb(0 0 0 / 20%);
    border: 1px solid rgb(255 255 255 / 20%);
    cursor: pointer;
}

.bg-transparent {
    --bs-bg-opacity: 1;
    background-color: transparent !important;
}

.input-group-text {
    display: flex;
    align-items: center;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #ffffffb3;
    text-align: center;
    white-space: nowrap;
    background-color: rgb(0 0 0 / 15%);
    border: 1px solid rgb(255 255 255 / 20%);
    border-radius: 0.375rem;
}

.input-group-text:hover i {
    color: #ffffffb3 !important;
}

.input-group a {
    text-decoration: none;
    cursor: pointer;
}

.forgot-password {
    color: #ffffffb3 !important;
    text-decoration: none;
}

.component-title {
    width: 100%;
    position: absolute;
    z-index: 999;
    top: 30px;
    left: 0;
    padding: 0;
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    color: #888;
    text-align: center;
}

.container-form-switch {
    width: 25px;
    height: 15px;
    position: relative;
}

.container-form-switch .checkbox {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
}

.container-form-switch .switch {
    width: 100%;
    height: 100%;
    display: block;
    background-color: #e9e9eb;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.2s ease-out;
}

.container-form-switch .slider {
    width: 15px;
    height: 15px;
    position: absolute;
    left: calc(50% - 15px / 2 - 10px);
    top: calc(50% - 15px / 2);
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.15), 0px 3px 1px rgba(0, 0, 0, 0.06);
    transition: all 0.2s ease-out;
    cursor: pointer;
}

.container-form-switch .checkbox:checked + .switch {
    background-color: #34c759;
}

.container-form-switch .checkbox:checked + .switch .slider {
    left: calc(50% - 15px / 2 + 10px);
    top: calc(50% - 15px / 2);
}

.form-login-text-error,
.form-login-email-error {
    color: red;
    height: 16px;
    text-align: center;
}

/* FORGET PASSWORD SEND MAIL */
.container-modal-login {
    position: fixed;
    width: 100%;
    height: 100vh;
    z-index: 999;
    background-color: #000000cc;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container-modal-login .form-container {
    max-width: 400px;
    background-color: #fff;
    padding: 32px 24px;
    font-size: 14px;
    font-family: inherit;
    color: #212121;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-sizing: border-box;
    border-radius: 10px;
    box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.084),
        0px 2px 3px rgba(0, 0, 0, 0.168);
}

.container-modal-login .form-container button:active {
    scale: 0.95;
}

.container-modal-login .form-container .logo-container {
    text-align: center;
    font-weight: 600;
    font-size: 18px;
}

.container-modal-login .form-container .form {
    display: flex;
    flex-direction: column;
}

.container-modal-login .form-container .form-group {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.container-modal-login .form-container .form-group label {
    display: block;
    margin-bottom: 5px;
}

.container-modal-login .form-container .form-group input {
    width: 100%;
    padding: 12px 16px;
    border-radius: 6px;
    font-family: inherit;
    border: 1px solid #ccc;
}

.container-modal-login .form-container .form-group input::placeholder {
    opacity: 0.5;
}

.container-modal-login .form-container .form-group input:focus {
    outline: none;
    border-color: #1778f2;
}

.container-modal-login .form-container .form-submit-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: inherit;
    color: #fff;
    background-color: #212121;
    border: none;
    width: 100%;
    padding: 12px 16px;
    font-size: inherit;
    gap: 8px;
    margin: 12px 0;
    cursor: pointer;
    border-radius: 6px;
    box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.084),
        0px 2px 3px rgba(0, 0, 0, 0.168);
}

.container-modal-login .form-container .form-submit-btn:hover {
    background-color: #313131;
}

.container-modal-login .form-container .link {
    color: #1778f2;
    text-decoration: none;
}

.container-modal-login .form-container .signup-link {
    align-self: center;
    font-weight: 500;
}

.container-modal-login .form-container .signup-link .link {
    font-weight: 400;
}

.container-modal-login .form-container .link:hover {
    text-decoration: underline;
}

.button-close-modal {
    font-size: 30px;
    position: absolute;
    top: 20px;
    right: 20px;
    color: #fff;
    cursor: pointer;
}
