/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

#codeotp
{
    background:#eeeeee;
    color:black;
    margin-bottom: 20px;
}

#success
{
    color:green;
    font-weight:bold;
}

#sendcode
{
    padding : 10px 15px !important;
    background: #4CAF50 !important;
    color:white !important; 
    
}

#verifyotp
{
    padding : 10px 15px !important;
    background: #008CBA !important;
    color:white !important;
    margin-left:10px
}

#phone-verif
{
    
    margin-top:20px !important;
    margin-bottom: 20px !important;
}

#error
{
    
    margin-bottom:20px !important;
    background: red !important;
    padding: 10px !important;
    color: white !important;
}

#sendcode:hover
{
    cursor:pointer !important;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19) !important;
}

#verifyotp:hover
{
    cursor:pointer !important;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19) !important;
}

.overlay{
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 999;
    background: rgba(255,255,255,0.8)  center no-repeat;
}
/* Turn off scrollbar when body element has the loading class */
body.loading{
    overflow: hidden;   
}
/* Make spinner image visible when body element has the loading class */
body.loading .overlay{
    display: block;
}