* {
    margin: 0;
    padding: 0;
    font-family: "Open Sans", sans-serif;
    color: #001733 !important;
}

:root {
    --theme-color: #00b894;
}

.login-form-section {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.login {
    max-width: 485px;
    background: #fff;
    box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    padding: 22px;
    border-radius: 12px;
}

.custome {
    border-radius: 15px !important;
    box-shadow: 19px 21px 5px 0px rgba(0, 0, 0, 0.09);
}

.input {
    position: relative;
    flex-wrap: nowrap;
}

.eye {
    position: absolute;
    right: 10px;
    top: calc(50% - 10px);
}

.header h3 {
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 16px;
}

.header p {
    font-size: 16px;
    margin-bottom: 20px;
}

.btncustom {
    background-color: var(--theme-color) !important;
    font-size: 16px !important;
    font-weight: bold !important;
    color: #fff !important;
    padding: 16px 0 !important;
}

.inputBox {
    margin-bottom: 25px;
}

.inputfield {
    padding: 25px !important;
}

.checkbox {
    margin-bottom: 25px !important;
}

@media (max-width: 1199px) {
    .inputBox {
        margin-bottom: 23px;
    }

    .inputfield {
        padding: 22px !important;
    }
}

@media (max-width: 991px) {
    .inputfield {
        padding: 21px !important;
    }
}

@media (max-width: 767px) {
    .inputfield {
        padding: 20px !important;
    }

    .btncustom {
        padding: 13px 0 !important;
    }
}

@media (max-width: 575px) {
    .header h3 {
        font-size: 18px;
        font-weight: 500;
    }

    .header p {
        font-size: 13px;
        margin-bottom: 23px;
    }

    .inputfield {
        padding: 16px !important;
    }

    .btncustom {
        padding: 8px 0 !important;
    }
    .login-form-section {
        display: grid;
        margin: 40px 0;
        height: calc(100vh - 80px);
    }
    .login {
        max-width: 380px;
        margin: auto;
    }
}

.setVisitorBtn {
    border: 1px solid var(--theme-color);
    background: none;
    padding: 6px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.3s ease-in-out;
    outline: none !important;
}
.setVisitorBtn:hover {
    background: var(--theme-color);
    color: #fff !important;
    outline: none;
}
