/* Basic styling for the form elements */

.cr-registration-container {
    max-width: 600px;
    margin: 20px auto;
    padding: 30px;
    border: 1px solid #ddd;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
    background:transparent;
}

.cr-conference-header{
    position: relative; 
    height: 400px; 
    width: 100%;
    margin-bottom: 30px !important;
}

.cr-form-group {
    margin-bottom: 15px;
    padding: 10px 0;
}

.cr-form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

.cr-registration-container input[type="text"],
.cr-registration-container input[type="email"],
.cr-registration-container input[type="date"],
.cr-registration-container input[type="password"],
.cr-registration-container textarea,
.cr-registration-container select{
    background: #cccccc1c !important;
    border: solid 1px #ccc !important;
    height: 36px !important;
    width: 100% !important;
    padding: 10px !important;
    border-radius: 4px !important;
    color: #fff !important;
    box-sizing: border-box; /* Important for full width */
}

.cr-registration-container select option{
    color: #333 !important;
}

.cr-registration-container textarea{
    height: 120px !important;
}

.cr-error-msg {
    color: red;
    font-size: 0.9em;
    margin: 0;
    font-size: 12px;
}

.cr-button {
    background-color: #0073aa;
    color: white;
    padding: 10px 20px;
    height: 36px;
    width: 100%;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 10px;
    display: inline-block;
}

.cr-button:hover {
    background-color: #005177;
}

#cr-password-box {
    margin-top: 15px;
    padding: 10px;
    border: 1px solid #f0f0f0;
    background-color: transparent;
}

/* Radio button styling for topic selection */
.cr-form-group input[type="radio"] {
    margin-right: 5px;
}
.cr-form-group label {
    font-weight: normal; /* Override default bold for radio/checkbox labels */
}



/* style.css */
.required-star {
    color: red;
    font-weight: bold;
}

.validation-error {
    display: block; /* Make it take up full width */
    color: #cc0000; /* Dark Red color */
    font-weight: 500;
    margin-top: 5px;
    padding: 5px 10px;
    background-color: #ffebeb; /* Light red background */
    border-left: 3px solid #cc0000;
    font-size: 0.9em;
}

/* Optional: Highlight the input field itself */
/* .cr-form-group input:invalid:not(:placeholder-shown),
.cr-form-group textarea:invalid:not(:placeholder-shown) {
    border-color: #cc0000;
} */


@media (min-width: 400px) and (max-width: 600px)  {
    .cr-role-options label{
        width: 100% !important;
    }    

}