/*************************************
******* ABBE HR MANAGEMENT CSS *******
******* AUTHOR: JOFFREY TORNEA *******
**************************************/

  
:root {
    --main-theme-orange: #ffca00;
    --main-theme-dark-bg: #171717;
    --main-theme-light-gray: #eff1f4;
    --main-theme-dark-orange: #cc8033;
    --main-charcoal-black: #333331;
}

* {
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
}

body {
    background: #e3e3e3;
    overflow-y: auto;
}

footer {
    position: absolute;
    bottom: 0;
    z-index: 999;
    width: 100%;
    color: #333331 !important;
  }
  
footer a {
    color: #feba12;
    text-decoration: none;
}
  

#login_page .login_logo_wrapper {
    height: 100vh;
    background: var(--main-charcoal-black);
}

#login_page .login_logo_wrapper img {
    max-width: 200px;
}

#login_page .signin_btn_wrapper button {
    padding: 1rem 2rem;
    border-radius: 50px;
}

#login_page .signin_btn_wrapper button img {
    width: 30px;
}

/* Verification Page */

#verification_page .card input {
    border: 0;
    border-radius: 0;
    height: 50px;
    font-size: 1.2em;
    letter-spacing: 1.2px;
}

#verification_page .card button {
    border: 0;
    width: 60%;
    background: var(--main-theme-orange);
    padding: .5rem 1rem;
    border-radius: 50px;
}

#verification_page .otp-field {
    flex-direction: row;
    column-gap: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
  
#verification_page .otp-field input {
    height: 45px;
    width: 42px;
    border-radius: 6px;
    outline: none;
    font-size: 1.125rem;
    text-align: center;
    border: 1px solid #ddd;
}

#verification_page .otp-field input:focus {
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
}

#verification_page .otp-field input::-webkit-inner-spin-button,
#verification_page .otp-field input::-webkit-outer-spin-button {
    display: none;
}

/* Media Queries */

@media screen and (max-width:450px) {
    
    body {
        overflow: hidden;
    }

    footer {
        font-size: .8em;
    }

    #login_page .login_logo_wrapper {
        height: 40vh;
    }

    #login_page .signin_btn_wrapper {
        margin-top: 2rem;
        display: flex;
        align-items: start;
    }

    .verification_content {
        transform: scale(1.8);
        height: 100vh;
    }

    .verification_content img.abbe_logo {
        width: 50%;
        margin: 0 auto;
    }
    
}