/*==============================================
    GENERAL  STYLES    
 =============================================*/
@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@600&display=swap');
@font-face {
    font-family: 'Conv_TTNorms-Regular';
    src: url('../fonts/TTNorms-Regular.eot');
    src: url('../fonts/TTNorms-Regular.woff') format('woff'), url('../fonts/TTNorms-Regular.ttf') format('truetype'), url('../fonts/TTNorms-Regular.svg') format('svg');
    font-weight: normal;
    font-style: normal;
}
body {
    font-family: 'Conv_TTNorms-Regular', sans-serif;
    font-size: 14px;
    background: #eceef9 url("../images/bg.jpg") no-repeat;
    background-size: cover;
}

input,
select {
    font-family: 'Conv_TTNorms-Regular', sans-serif;
}

img {
    max-width: 100%;
}

ul,
ol {
    list-style: none;
    padding: 0;
    margin-bottom: 0;
}

/* Registration Page */
.registration-container {
    width: 90%;
    background: #fff;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.1);
    -o-box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.1);
    -ms-box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.1);
    margin:2vh auto;
    z-index: 99;
    max-width: 840px;
}
.registration-form{
    padding: 30px 50px;
}
.registration-form-title {
    display: block;
    font-size: 22px;
    color: #13284c;
    line-height: 1.2;
    /* text-align: center; */
    padding-top: 25px;
    padding-bottom: 40px;
    font-weight: bold;
}
.registration-form-logo img {
    display: block;
    width: 200px;
    /* margin: 0 auto; */
}
.form-control {
    height: 40px;
    box-shadow: none;
    color: #000;
    font-size: 15px;
    max-width: 100%;
    font-weight: bold;
  }
  .form-group label {
    font-weight: 300;
    display: block;
    color: #646464;
    font-size: 13px;
  }
  label.required:before {
    content: "*";
    color: red;
    margin-right: 4px;
  }
  #success-msg,
  #failed-msg {
    display: none;
    font-weight: bold;
    font-size: 15px;
    text-align: center;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    padding: 25px;
  }
  .custom-checkbox{
    margin: 35px 0px 35px;
    font-size: 16px;
  }
  .custom-checkbox label{
    min-height: 25px;
    padding-left: 35px;
  }
  .custom-checkbox input[type=checkbox]{
    width: 20px;
    height: 20px;
    margin-left: -30px;
    top: -2px;
  }
  .registration-form .modal-footer{
    padding: 20px 0;
  }
  .modal-footer .btn-custom {
    border-radius: 2px;
    padding: 14px 40px;
    text-transform: uppercase;
    outline: none;
    font-size: 15px;
  }
  input[type=date].form-control, input[type=datetime-local].form-control, input[type=month].form-control, input[type=time].form-control{
    font-size: 14px;
  }

  /* Form Validation Styles */
  .form-control.error {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
  }

  .error-message {
    display: block;
    color: #dc3545;
    font-size: 12px;
    margin-top: 5px;
    font-weight: normal;
  }

  .form-control.error:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
  }

  .form-control:focus {
    border-color: #4CAF50;
    box-shadow: 0 0 0 0.2rem rgba(76, 175, 80, 0.25);
    outline: 0;
  }

  #success-msg,
  #failed-msg {
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 4px;
    font-weight: 500;
  }

  #success-msg {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
  }

  #failed-msg {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
  }

  .btn-custom:disabled {
    opacity: 0.6;
    cursor: not-allowed;
  }
