body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #F5F7FB;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #F5F7FB;
}
  
::-webkit-scrollbar-thumb {
    background-color: #09371C;
    border-radius: 20px;
}

.ip__auth-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
}

.ip__auth-card {
    border-top: none;
    border-radius: .5rem;
}

.ip__auth-header {
    display: flex;
    align-items: center;
    padding: 16px 36px;
    background-color: #09371C;
    border-radius: .5rem;
}

.ip__auth-header img {
    width: 100px;
}

.ip__auth-header h1 {
    font-family: 'Overpass', sans-serif;
    font-size: 40px !important;
    font-weight: 600;
    color: #eee;
    margin: 0;
    cursor: default;
}

.ip__auth-header h4 {
    color: #eee;
    margin-top: -5px;
    text-transform: uppercase;
    font-size: 18px;
    font-family: 'Montserrat', sans-serif;
    cursor: default;
}

.ip__auth-body {
    padding: 24px 30px;
    background-color: #fff;
    font-family: 'Open Sans', sans-serif;
    text-align: start;
    border-radius: .5rem;
}

.ip__auth-form input[type="text"].ip__form-text {
    width: 100%;
    height: 40px;
    border: 1px solid #808080;
}

.ip__auth-form input[type="password"].ip__form-password {
    width: 100%;
    height: 40px;
    border: 1px solid #808080;
}

.ip__auth-form input[type="text"].ip__form-password {
    width: 100%;
    height: 40px;
    border: 1px solid #808080;
}

.ip__feedback-error {
    margin-top: 3px;
    margin-bottom: 0;
    font-size: 14px;
    color: #DC3545;
    cursor: default;
}

.is-invalid {
    border: 1px solid #DC3545 !important;
}

.ip__btn-auth {
    display: flex;
    justify-content: space-between;
}

.ip__btn-auth button.btn-auth {
    background-color: #119447;
    color: #fff;
    border: none;
    border-radius: .5rem;
    padding: 6px 18px;
}

.ip__btn-auth button.btn-auth:hover {
    background-color: #148443;
}

.ip__btn-auth a.btn-home {
    text-decoration: none;
    color: #6C757D;
    border-bottom: 2px solid #6C757D;
    margin: 6px 0;
}

@media (max-width: 480px) {
    .ip__auth-wrapper {
        padding: 0 12px 0 12px;
    }

    .ip__auth-card {
        width: 100%;
    }

    .ip__auth-header img {
        width: 70px;
    }

    .ip__auth-header h1 {
        font-size: 28px !important;
    }

    .ip__auth-header h4 {
        font-size: 16px !important;
    }
}