/* Global */
* {
	box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', sans-serif !important;

}

/* Customized Color */
.sot-font-green{
    color: #004333 !important;
}

.sot-bg-green{
    background-color: #004333 !important;
}


/* Customized Global */
.body{
    background-image: url('../images/webinar-bg.jpg');
    min-height: 100vh;
}

.grid-container {
    display: grid;
    align-items: center;
    justify-content: center;
    height: 100vh;
}




.active {
    color: #004333 !important;
}

.container-fluid {
    padding:0 !important;
}


/* Login Form */
.login-form{
    background-color: #fff;
    max-width: 500px;
    padding: 30px 20px;
    text-align: center;
    border-radius: 10px;
    -webkit-box-shadow: 0px 46px 34px -13px rgba(0,0,0,0.48);
    -moz-box-shadow: 0px 46px 34px -13px rgba(0,0,0,0.48);
    box-shadow: 0px 46px 34px -13px rgba(0,0,0,0.48);
}
.login-form-2{
    background-color: #fff;
    max-width: 500px;
    padding: 30px 20px;
    text-align: center;
}

.customInput {
	background-color: #eee;
	border: none;
	padding: 12px 15px;
	margin: 8px 0;
	width: 100%;
}
.checkboxes label {
    display: block;
    padding-right: 10px;
    padding-left: 22px;
    text-indent: -22px;

  }
  .checkboxes input {
    vertical-align: middle;
  }
  .checkboxes label span {
    vertical-align: middle;
  }
  label{
      font-size: 70%;

  }

  .agreeTerm {
    padding: 1em 0;
    line-height: 20px;
  }

  #webBtn{
      background-color: #000;
      padding: 10px 20px;
      border-radius: 10px;
      color: #fff;
      cursor: pointer;
  }

  #webBtn:hover{
    background-color: #222;
  }
  input:disabled {
    border: 1px solid #cccccc;
    background-color: #cccccc !important;
    color: #666666;
    cursor: unset !important;
    }

.smallFont{
    font-size: 12px;
    color:#000;

    margin: 0;

}



.tbl-label{

    text-transform: uppercase;
    color: #aaa;
    font-size: 90%;

}

@media screen and (max-width: 500px) {
    .body{
        background-color: #fff;
        background-image: unset;
        min-height: 100vh;
    }

    .login-form{
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
    }
}









