/*button[disabled], html input[disabled] {
    cursor: default;
    background-color: #fdc1a0 !important;
  }
  .input .mat-form-field {
    display: block;
    position: relative;
    text-align: left;
  }
  .input .label{
    text-align: left;
    width: 100%;
    font-weight: 800 !important;
    color:#15223D;
    font-size: 11px;
    margin-top: 10px;
  }
  .input .mat-form-field-wrapper{
    padding-bottom: 5px !important;
  }
  
  .input{
    padding-bottom:23px;
  }
  .contain{
  width: 30%;
    margin: auto;
    background-color: lightblue;
    padding: 26px 35px 94px;
    margin-top:8%;
  }
  .content{
    padding-top: 10px;
  }
  ::ng-deep .form-cls .mat-form-field-flex .mat-form-field-infix{
    border: 1px solid rgba(112, 112, 112, 0.11);
    background: rgba(241, 241, 241, 1);
    border-radius: 5px;
  }
  .login-btn{
  position: relative;
    background: linear-gradient(to right,#5fb2b3 0,#8cc9ca 100%);
    border: 1px;
    float:right;
    border-radius: 5px;
    padding: 15px 0;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 12%;
    width: 25%;
  }
  .header-name{
    text-align: center;
  }
  .form-control {
    display: block;
    height: calc(2.25rem + 2px);
    font-size: 1rem;
    line-height: 1.5;
    width: 100%;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
  }*/

  body {font-family: Arial, Helvetica, sans-serif;}
  * {box-sizing: border-box;}
  .center {
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  .input-container {
    display: -ms-flexbox; /* IE10 */
    display: flex;
    width: 100%;
    margin-bottom: 15px;
  }
  
  .icon {
    padding: 10px;
    background: dodgerblue;
    color: white;
    min-width: 50px;
    text-align: center;
  }
  
  .input-field {
    width: 100%;
    padding: 10px;
    outline: none;
  }
  
  .input-field:focus {
    border: 2px solid dodgerblue;
  }
  
  /* Set a style for the submit button */
  .btn {
    background-color: dodgerblue;
    color: white;
    padding: 15px 20px;
    border: none;
    cursor: pointer;
    width: 100%;
    opacity: 0.9;
  }
  
  .btn:hover {
    opacity: 1;
  }
      
  .not-active {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
    color: black;
  }