/*body,
html {
    height: 100%;
    width: 100%;
    background-color: #f8f8f8;
    display: flex;
    font-family: "Raleway", arial, sans-serif;
}*/

.font-h2-strong {
    color: #141414;
    font-weight: 400;
    font-size: 24px;
    line-height: 31.68px;
    font-family: "Raleway", arial, sans-serif;
}

.font-text-large-1 {
    color: #8f8f8f;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    font-family: "Raleway", arial, sans-serif;
}

.main-content-container {
    display: flex;
    flex-grow: 1;
    flex-direction: column;
    align-items: left;
    justify-content: left;
    row-gap: 32px;
    margin-top: 20px;
}

.text-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 12px;
}

button {
    /*background-color: #0C629E;
    padding: 10px 16px 10px 16px;
    border: none;
    border-radius: 4px;
    line-height: 20px;
    font-weight: 500;
    color: #ffffff;
    font-family: "Raleway", arial, sans-serif;
    width: 100%;
    max-width: 220px;
    font-size: 16px;
    cursor: pointer;*/
    
    vertical-align: middle;
    width: 109px;
    height: 64px;
    border: 1px solid #ffc527;
    background: #ffc527;
    border-radius: 3px 3px 3px 3px;    
    cursor: pointer;    
    font-weight: 600;
    font-size: 12px;    
    color: #000;
    transition: all 0.2s;
    font-family: "Poppins", "Droid Arabic Kufi", sans-serif;
    transition: color 0.2s, background 0.2s, border-color 0.2s;
    padding:6px;
    
    
}

button:hover {
  
    vertical-align: middle;
    width: 109px;
    height: 64px;
    border: 1px solid #0000;
    background: #000;
    border-radius: 3px 3px 3px 3px;    
    cursor: pointer;    
    font-weight: 600;
    font-size: 12px;    
    color: #fff;
    transition: all 0.2s;
    font-family: "Poppins", "Droid Arabic Kufi", sans-serif;
    transition: color 0.2s, background 0.2s, border-color 0.2s;
    padding:6px;  
  
}

#otp-input {
    display: flex;
    column-gap: 8px;
    flex-wrap: wrap;
    row-gap: 8px;
}

#otp-input input {
    text-align: center;
    padding: 10px 8px 10px 8px;
    border: 1px solid #adadad;
    border-radius: 4px;
    outline: none;
    height: 64px;
    width: 50px;
}

#otp-input input:focus {
    border: 1px solid #0C629E;
}

#otp-input input:focus::placeholder {
    color: transparent;
}

#otp-input input::-webkit-outer-spin-button,
#otp-input input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
#otp-input input[type="number"] {
    -moz-appearance: textfield; /* Firefox */
}

.loader {
    width: 16px;
    height: 16px;
    border: 2px solid #ffc527;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
    }

    @keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
    } 
    
    .error{
        margin-top: 6px;
        color: red;
    }
    
    .hide{
        display: none;
    }
    
    
.btn-disabled{
    cursor: default!important;
    vertical-align: middle;
    width: 109px;
    height: 64px;
    border: 1px solid #0000;
    background: #000;
    border-radius: 3px 3px 3px 3px;    
    cursor: pointer;    
    font-weight: 600;
    font-size: 12px;    
    color: #fff;
    transition: all 0.2s;
    font-family: "Poppins", "Droid Arabic Kufi", sans-serif;
    transition: color 0.2s, background 0.2s, border-color 0.2s;
    padding:6px;  
    
    
}

.btn-disabled:hover {    
    cursor: default!important;
    vertical-align: middle;
    width: 109px;
    height: 64px;
    border: 1px solid #0000;
    background: #000;
    border-radius: 3px 3px 3px 3px;    
    cursor: pointer;    
    font-weight: 600;
    font-size: 12px;    
    color: #fff;
    transition: all 0.2s;
    font-family: "Poppins", "Droid Arabic Kufi", sans-serif;
    transition: color 0.2s, background 0.2s, border-color 0.2s;
    padding:6px;  
  
}            