.sign-in-form {
    padding: 25px 20px;
    border-radius: 12px;
    background-color: #fafafa;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
}


.sign-in-logo {
    display: flex;
    align-items:center;
    justify-content:center;
}

.sign-in-logo-svg {
    margin-bottom: 20px;
    width: 100%;
}


.custom-form-input {
    display: block;
    width: 100%;
    height:62px;
    padding-top: 25px;
    padding-left: 12px;
    font-weight: 600;
    border: 1px solid #cad3d6;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    font-size: 18px;
    color:#03a4ed;
    border-radius: 7px;
    font-family: Arial, Helvetica, sans-serif;
}

.custom-form-input:focus,
.custom-form-input:active {
    color: #212529;
    background-color: #fff;
    border-color: #03a4ed;
    outline: 0;
}

.custom-form-floating {
    position:relative;
}

.custom-form-floating-label {
    position:absolute;
    font-size: 12px;
    height:100%;
    width:100%;
    top: 0px;
    display:flex;
    align-items: center;
    padding-left: 14px;
    transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
    user-select: none;
    pointer-events: none 

}

.custom-form-input:focus ~ label,
.custom-form-input:valid ~ label {
  font-size: 10px;
  height:55%;
}





.checkbox {
    margin-top: 7px;
    padding: 2px;
    border-radius: 6px;
    background-color: #d3d3d32a;
}

.checkbox:hover {
    background-color: rgba(0,119,255,0.06);
}

.checkbox-input {
    width: 20px;
    height: 20px;
    vertical-align: middle;
}

.checkbox-label {
    vertical-align: middle;
    padding-left: 4px;
}







.sign-in {
    cursor: pointer;
    border: 0;
    border-radius: 7px;
    font-size: 15px;
    font-weight: 600;
    margin-top: 30px;
    width: 200px;
    padding-top: 12px;
    padding-bottom: 12px;
    color: #0077af;
    background-color: rgba(255, 255, 255, 1);
    border: 1px solid #0077af;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
  }
  
  .sign-in:hover {
    transition: 0.4s;
    color: white;
    background-color: #03a4ed;
  }


  .message {
    float: right;
    margin-top: 30px;
    color: rgb(254, 172, 172);
  }