/* PHONE AND TABLET COMMON CSS */
@media only screen and (max-width: 1249px) {
    .mobile_form_box_padding { padding-top: 30px; padding-bottom: 15px; }
    .small_form { width: 75%; }
}

/* PC ONLY CSS */
@media only screen and (min-width: 1250px), print {
    .form_box { border-radius: 10px; border: 1px solid #CCC; box-shadow: 1px 1px 5px #CCC; padding: 0; width: 100%; background: #FFFFFF; margin: 0 auto; -moz-box-sizing: border-box; -webkit-box-sizing: border-box;box-sizing: border-box; }
    .form_box_padding { padding: 20px; }
    .form_box_padding2 { padding: 40px; }
}

input[type='file'] {
    height: 35px; border-radius: 3px; border: 1px solid #CCC; padding: 4px 10px 4px 10px; font-weight: 400; font-size: 15px;  box-shadow: 1px 1px 5px #CCC; background-color: white; padding: 0px; margin: 0px; 
}

.checkbox-container input[type="checkbox"] {
  display: none;
}

.recaptcha-wrapper { display: inline-block; text-align: center; }
.g-recaptcha { display: inline-block; }
.g-recaptcha > div { margin: 0 auto; }

/* Style custom checkbox */
.checkbox-container input[type="checkbox"] + label {
  display: inline-block;
  width: 25px;
  height: 25px;
  border: 2px solid #cccccc;
  background-color: white;
  cursor: pointer;
  position: relative;
}

/* Style checked custom checkbox */
.checkbox-container input[type="checkbox"]:checked + label {
  background-color: #24739E;
}

/* Style custom checkmark */
.checkbox-container input[type="checkbox"] + label::after {
  content: '\2713'; /* Unicode checkmark character */
  font-size: 30px; /* Adjust size as needed */
  font-weight: 900; /* Make the checkmark bolder */
  color: white;
  position: absolute;
  top: 20%;
  left: 60%;
  transform: translate(-50%, -50%);
  visibility: hidden; /* Hide checkmark by default */
  text-shadow: -1px -1px 0 #174761,  
  1px -1px 0 #174761,
 -1px  1px 0 #174761,
  1px  1px 0 #174761; /* Outline effect */
}

/* Show checkmark for checked custom checkbox */
.checkbox-container input[type="checkbox"]:checked + label::after {
  visibility: visible;
}
textarea { font-size: 17px; color: #656565; height: 100px; font-weight: 400; margin: none; border: none; box-shadow: none; padding-left: 20px; outline: none; resize: none; max-height: 300px; padding-top: 27px; }
textarea:focus { border: none; box-shadow: none; padding: none; margin: none; outline: none; }
.textarea-container { border-radius: 3px; border: 1px solid #CCC; box-shadow: 1px 1px 5px #CCC; height: 100px; background-color: white; position: relative; outline: none !important;  margin-bottom: 25px; }
.textarea-container:focus-within label { transform: translateY(-75%); font-size: 14px; opacity: 0.5; transition: all 0.2s ease-in-out; }


.textarea_input { width: 100%; border: none; box-sizing: border-box; max-width: 100%;}
.no-border:focus + label,
.textarea_input:not(:placeholder-shown) + label { transform: translateY(-75%); font-size: 14px; opacity: 0.5; transition: all 0.2s ease-in-out; }

.textarea_input::placeholder { opacity: 0; transition: opacity 0.2s ease-in-out; }
.textarea-container:focus-within .no-border::placeholder, .input-container:focus-within .textarea_input:not(:placeholder-shown)::placeholder { opacity: 0; transition: opacity 0.2s ease-in-out; }
.textarea-container:focus-within { outline: none !important; border-color: #719ECE; box-shadow: 0 0 10px #719ECE; }

select { font-size: 17px; color: #656565; height: 55px; border: none; box-shadow: none; padding-left: 20px; margin: none; outline: none; padding-top: 20px; }
select:focus { border: none; box-shadow: none; padding: none; margin: none; outline: none; }




.select-container, .input-container { border-radius: 3px; border: 1px solid #CCC; box-shadow: 1px 1px 5px #CCC; height: 55px; background-color: white; position: relative;  margin-bottom: 15px; }
.select-container:focus-within label { transform: translateY(-75%); font-size: 14px; opacity: 0.5; transition: all 0.2s ease-in-out; }
.label-textarea { position: absolute; top: 18px; left: 20px; font-size: 17px; pointer-events: none; transition: all 0.2s ease-in-out; } 
.select-container:focus-within .select-line { transform: scaleY(0.6); transition: transform 0.2s ease-in-out; }
.select-line { height: 2px; background-color: black; transform-origin: bottom; transition: transform 0.2s ease-in-out; }
.select_input { width: 100%; border: none; }
.no-border:focus + label,

.select_input::placeholder { opacity: 0; transition: opacity 0.2s ease-in-out; }
.select-container:focus-within .no-border::placeholder, .select-container:focus-within .select_input:not(:placeholder-shown)::placeholder { opacity: 0; transition: opacity 0.2s ease-in-out; }
.select-container label.selected { transform: translateY(-75%); font-size: 14px; opacity: 0.5; transition: all 0.2s ease-in-out;}
.label-container { color: #767676; font-weight: bold; }
.select-container:focus-within { outline: none !important; border-color: #719ECE; box-shadow: 0 0 10px #719ECE; }
select option{ font-size: 16px; }
.select_course { width: 100%;}

.custom-select { margin-top: 0; position: relative; display: inline-block; font-size: 13px; }
.selected { padding: 0px 0px; background: #FFF; border-radius: 8px; cursor: pointer; user-select: none; }
.options { display: none; position: absolute; top: 100%; left: -60px; background: white; border: 1px solid #ddd; border-radius: 8px; list-style: none; padding: 0; margin: 5px 0 0; width: 150px; box-shadow: 0 4px 10px rgba(0,0,0,0.1); z-index: 1000; }
.options li { padding: 15px 16px; cursor: pointer; font-size: 16px; }
.options li:hover { background: #4cbeff; color: white; }
.options.show { display: block; }

input[type=text], input[type=email], input[type=password], input[type=select] { 
    border: 1px solid #333; font-size: 17px; color: #656565; height: 55px; border: none; box-shadow: none; padding-left: 20px; margin: none; outline: none; padding-top: 20px; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box;
}

.input-container,
.textarea-container,
.select-container {
    height: auto;           /* ← Remove fixed height */
    min-height: 55px;
    overflow: hidden;
    padding-bottom: 1px;    /* ← Critical: exposes bottom border */
    position: relative;
}

#course_id1:invalid ~ .label-container,
#course_id1[value=""] ~ .label-container {
    top: 50% !important;
    font-size: 16px !important;
    transform: translateY(-50%) !important;
}

.input-container:focus-within label { transform: translateY(-75%); font-size: 14px; opacity: 0.5; transition: all 0.2s ease-in-out; }
.label-input { position: absolute; top: 18px; left: 20px; font-size: 17px; pointer-events: none; transition: all 0.2s ease-in-out; } */

.text_input { width: 100%; border: none; }
.no-border:focus + label,
.text_input:not(:placeholder-shown) + label { transform: translateY(-75%); font-size: 14px; opacity: 0.5; transition: all 0.2s ease-in-out; }
.text_input::placeholder { opacity: 0; transition: opacity 0.2s ease-in-out; }
.input-container:focus-within .no-border::placeholder, .input-container:focus-within .text_input:not(:placeholder-shown)::placeholder {
    opacity: 0; transition: opacity 0.2s ease-in-out;
}
.input-container:focus-within { outline: none !important; border-color: #719ECE!important; box-shadow: 0 0 10px #719ECE; }


/* Hide the default checkboxes */
input[type="checkbox"] { display: none; }
.checkbox-container { display: table; /* Ensure container wraps around the checkbox and label */ }
.blue-checkbox-small {
  display: inline-block;
  width: 25px; /* Adjust width of the checkbox */
  height: 25px; /* Adjust height of the checkbox */
  background-image: url('/images/check_boxes/unchecked.png'); /* Specify the path to your unchecked checkbox image */
  background-size: contain;
  cursor: pointer;
}input[type="checkbox"]:checked + .blue-checkbox-small {
  background-image: url('/images/check_boxes/checked_small.png'); /* Path to checked small checkbox image */
}

.blue-checkbox {
  display: inline-block;
  width: 30px; /* Adjust width of the checkbox */
  height: 30px; /* Adjust height of the checkbox */
  background-image: url('/images/check_boxes/unchecked.png'); /* Specify the path to your unchecked checkbox image */
  background-size: contain;
  cursor: pointer;
}
input[type="checkbox"]:checked + .blue-checkbox  {
  width: 30px; /* Adjust width of the checkbox */
  height: 30px; /* Adjust height of the checkbox */
  background-image: url('/images/check_boxes/checked.png'); /* Specify the path to your checked checkbox image */
}

.filled label,
.filled .label-container,
.filled .label-textarea,
.filled .label-input {
    transform: translateY(-75%);
    font-size: 17px;
    opacity: 0.5;
    transition: all 0.2s ease-in-out;
}

.checkbox-grid {
    display: flex;
    align-items: center;
    min-height: 55px;
    padding: 0 10px;
    border-radius: 3px;
    border: 1px solid #CCC;
    box-shadow: 1px 1px 5px #CCC;
    background-color: white;
}

/* Optional: subtle focus style only when checkbox is focused */
.checkbox-grid:focus-within {
    border-color: #719ECE;
    box-shadow: 0 0 10px #719ECE;
}


#countrySelect { height: 45px; border-radius: 3px; border: 1px solid #CCC; padding: 4px 10px 4px 10px; font-weight: 400; font-size: 15px; box-shadow: 1px 1px 5px #CCC; }
#stateSelect { height: 45px; border-radius: 3px; border: 1px solid #CCC; padding: 4px 10px 4px 10px; font-weight: 400; font-size: 15px; box-shadow: 1px 1px 5px #CCC; width: 100%; }
.select_overflow { max-height: 350px; }
.course_select { font-size:25px; font-weight: 400; color: #333333; line-height: 45px; text-align: center; }
.cs_unchecked { display: block; float: left; width: 20px; height: 20px; padding-right: 5px; padding-top: 5px; }
.pc_section_holder { margin-left: -25px; }

.registration { padding: 0px 0px 0px 0px; width: 100%; display: table; }

#email_verified { width: 20px; height: 20px; vertical-align: top; margin-top: -2px; }
.reg_text { width: 700px; color: #333333; font-weight: 400;}
.reg_text2 { width: 722px; color: #333333; font-weight: 400;}
.reg_text3 { width: 734px; color: #333333; font-weight: 400;}
.reg { width: 200px; padding-top: 12px; padding-right: 8px; font-size:18px; font-weight: 400; color: #333333; }
.reg2 { padding-top: 0px; }
.register { width: 80%; text-align: center; padding-top: 25px; }
.reg_container { padding-top: 7px; }
/*.reg_col1 { width: 25%; float: left; text-align: right; padding-top: 12px; padding-right: 8px; font-size:18px; font-weight: 400; color: #333333; }*/
.reg_col1 { display: none;}
.reg_col2 { width: 100%; float: left; text-align: left; padding-left: 25px; }
.reg_col3 { margin: 0 auto; }
.reg_col3_text { padding-top: 10px; }
.reg_birth_col1 { width: 33%; float: left; }
.reg_birth_col2 { width: 34%; float: left; }
.reg_birth_col3 { width: 33%; float: right; }
.reg_box { width: 92%; height: 35px; border-radius: 3px; border: 1px solid #CCC; padding: 4px 10px 4px 10px; font-weight: 400; font-size: 15px; box-shadow: 1px 1px 5px #CCC; }
.reg_box_red { width: 92%; height: 35px; border-radius: 3px; border: 1px solid #B02022; padding: 4px 10px 4px 10px; font-weight: 400; font-size: 15px; box-shadow: 1px 1px 5px #B02022; }
.reg_complete_box { width: 90%; }
.reg_complete_spacer { padding-top: 25px; }
.reg_clear { clear: both; padding-top: 12px;  }
.birthday_box { width: 95%; }
.birthyear_box { width: 95%; }
.birthmonth_box { width: 95%; }
.checkbox_box { width: 50px; }
.missing { border: 1px solid red; box-shadow: 2px 2px 5px #CCC; }
.missing_title { width: 100%; text-align: center; font-size: 18px; color: red; padding-top: 15px; padding-bottom: 15px; } 
.missing_object { line-height: 30px; color: red; }
.contact_missing { width: 800px; }
.contact_input_missing { width: 100%; color: #B02022;  }
.contact_textarea_missing { width: 100%; max-width: 100%; min-width: 100%; height: 200px; max-height: 200px; min-height: 200px; color: #B02022; }
.reset_text { padding-top: 25px; padding-bottom: 25px; }
.reset_text_box { width: 90%; padding-bottom: 40px; }

.login_page { width: 70%; margin:0 auto; }
.login_form { width: 60%; margin: 0 auto; }
.login_form_column_container { width: 60%; margin: 0 auto; background-color: red; }
.login_form_column1 { width: 0%;  float: left; text-align: right; vertical-align: middle; padding-top: 15px; }
.login_form_column2 { width: 100%;  float: right; text-align: left; }
.login_container { width: 100%; display:table;  }
.login_box { width: 100%; height: 45px; border-radius: 3px; border: 1px solid #CCC; padding: 4px 10px 4px 10px; font-weight: 400; font-size: 15px; box-shadow: 1px 1px 5px #CCC;   -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; }
.login_label_box { float: left; width: 29%; text-align: right; vertical-align: middle; padding-top: 18px; }
.login_input_box { float: right; width: 70%; text-align: left; padding-top: 8px;}
.login_input { width: 400px; }
.login_error { padding-bottom: 15px; }

.account_info_text { padding-top: 4px; }
.change_email_error { position: absolute; right:0px; top: 50px; text-align: center; width: 100%; display: none; color: #B02022; }
.change_password_error { position: absolute; right:0px; top: 50px; text-align: center; width: 100%; display: none; color: #B02022; }

.reset_pw { width: 80%; margin: 0 auto; }
.verify_input { width: 450px; height: 35px; border-radius: 3px; border: 1px solid #CCC; padding: 4px 10px 4px 10px; font-weight: 400; font-size: 15px; box-shadow: 1px 1px 5px #CCC;}
.verify_main { width: 100%; text-align: justify; }

.account_info_col1 { float:left; width: 16%; display: table-cell; text-align: left; }
.account_info_col2 { float:right; width: 84%; display: table-cell; text-align: left; }

.recover_column1 { float:left; width: 25%; display: table-cell; text-align: right; }
.recover_column2 { float:left; width: 75%; display: table-cell; text-align: left; }
.recover_column1 span { display:inline-block; padding-right: 25px; padding-top: 15px;  }
.recover_column2 span { display:inline-block; width: 80%; }

.form_error_message_container { color: #B02022; height: 45px; text-align: center; padding-top: 15px; }
.form_label { padding-right: 20px; }
.form_row { padding-top: 15px; }
.form_label2 { padding-right: 15px; padding-top: 12px; }
.form_spacer { padding-top: 15px; margin: none;  }

.error { border: 1px solid red; outline: 1px solid red; }
.error:focus { border: 1px solid red;  outline: 1px solid red;}
.noerror { border: 1px solid #55A601; outline: 1px solid #55A601; }


.add_course_column1 { width: 100%; text-align: left; vertical-align: middle; padding-top: 15px; }
.add_course_price_holder { text-align: right; margin-right: 80px; margin-top: 25px;  }
.add_course_price { text-align: right; margin-right: 0px; padding-top: 25px; }


