/**
 * Theme Name: clilab Child
 * Description: Child theme for the clilab
 * Author: 21Lab
 * Template: clilab
 */

/* Styling for the required asterisk */
 .required-asterisk {
    color: red;
    font-weight: bold;
}

 /* Alert Container */
.alert-container {
    margin-top: 10px;
}


/* Custom Alert Box */
.custom-alert {
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 5px;
    font-size: 14px;
    position: relative;
    display: block;
}

/* Success Alert */
.custom-alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

/* Error Alert */
.custom-alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Close Button */
.custom-alert-close {
    position: absolute;
    top: 10px;
    right: 15px;
    color: inherit;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
}

.clilab-signup-container .form-row{
    width: 100%;
}
.clilab-signup-container .form-row .form-group{
    width: 50%;
    float: left;
    margin-bottom: 12px;
}
.clilab-signup-container .form-row .form-group input{
    line-height: 0px !important;
    padding: 14px 25px !important;
    width:80% !important;
}
.clilab-signup-container .form-row .form-group select{
  
    width:80% !important;
    padding: 14px 25px !important;
    appearance: auto !important;
}

.clilab-signup-container .checkbox-group span {
    display: block;
    margin-bottom: 10px;
}
@media (max-width: 767px) {
    .clilab-signup-container .form-row .form-group{
        width: 100%;
        float: none;
    }

    .clilab-signup-container .form-row .form-group input,
    .clilab-signup-container .form-row .form-group select{
        width: 100% !important;
    }
}