.formError{color:red !important; font-size: 11px; padding-top: 2px;}
.handCursor{cursor:pointer !important;}
.about_text{ font-size: 15px;}
.font-bold{ font-weight: bold !important; }
.registration_done{ color: #000; width: 100%; text-align: center !important; font-size: 20px;}
.font-white{ color: #fff; }
.font-blue{ color: #2e358d; }
.font-black{ color: #000; }
.font-underline{ text-decoration: underline; }
.opacity-black-bg{width:100%; background: rgba(0,0,0,.5);}
.arrow-images{ height: 10px; }
.padding_ten{padding: 10px;}

.sms_info{ background: #FFFFFF;}

/* Alert messages - STARTS */
    :root {
        --primary: #0676ed;
        --background: #222b45;
        --warning: #f2a600;
        --success: #246a11;
        --error: #e41749;
        --dark: #151a30;
    }

    .alert-container
    {
        max-height: 20px;
        top: 0px;
        display: flex;
        width: 100%;
        justify-content: center;
        background-color: #0666a3;
    }

    .alert 
    {
        position: absolute;
        width: auto;
        max-height: 20px;
        padding: 10px;
        text-align: center;
        color: #fff;
        font-size: 12px;
        border-bottom-left-radius: 5px;
        border-bottom-right-radius: 5px;
    }
    .alert-warning 
    {
        background: var(--warning);
    }
    .alert-success 
    {
        background: var(--success);
    }
    .alert-primary 
    {
        background: var(--primary);
    }
    .alert-dark 
    {
        background: var(--dark);
    }
    .alert-error 
    {
        background: var(--error);
    }
/* Alert messages - ENDS */