input.error {
    border: 1px solid #dd5979 !important;
    /* background-color: #dd5979 !important; */
    background: url('../img/invalid.png');
    background-position: 98% 50%;
    background-repeat: no-repeat;
    background-size: 20px;
}

input.valid {
    border: 1px solid rgb(132, 252, 132) !important;
    /* background-color: rgb(158, 251, 158) !important; */
    background: url('../img/valid.png');
    background-position: 98% 50%;
    background-repeat: no-repeat;
    background-size: 20px;
}
.form {
 padding-bottom: 20px;
    background: linear-gradient(20.06deg, #F3A3A3 0%, #BB0000 100%);


  padding-left: 10px;
  padding-right: 10px;
    border-radius: 8px;
    box-sizing: border-box;
    margin: 20px auto;
    max-width: 520px;
    box-shadow: 0 0 8px rgba(0, 0, 0, .5);
}
.los {
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    padding-bottom: 15px;
}
button:disabled,
button[disabled]{
  border: 1px solid #999999;
  background-color: #cccccc !important;
  color: #666666;
}

.title {
    color: #111;
    font-family: sans-serif;
    font-size: 36px;
    font-weight: 600;
    margin-top: 30px;
}

.subtitle {
        padding-left: 50px;
    padding-right: 50px;
  width: 100%;
   padding-bottom: 30px;
   padding-top: 30px;
    color: #fff;
    font-family: sans-serif;
    font-size: 16px;
    font-weight: 600;
   border-top-left-radius: 8px;
   border-top-right-radius: 8px;
}

.input-container {
    height: 50px;
    position: relative;
      width: 90%;
    margin-left: 0;
}

.ic1 {
  box-shadow: 0px 1px 4px 0px #00000033;

  
    margin-top: 20px;
}

.ic2 {
   box-shadow: 0px 1px 4px 0px #00000033;


    margin-top: 30px;
}

.input {
    border: 3px solid #065F65;
     color: #C2C5CA;
     background-color: #fff;
    border-radius: 8px;
    border: 0;
    box-sizing: border-box;
    color: #000;
    font-size: 18px;
    height: 50px;
    outline: 0;
    padding: 4px 20px 0;
    width: 85%;
}

.cut {
    background-color: #15172b;
    border-radius: 10px;
    height: 20px;
    left: 20px;
    position: absolute;
    top: -20px;
    transform: translateY(0);
    transition: transform 200ms;
    width: 76px;
}

.cut-short {
    width: 50px;
}

.input:focus~.cut,
.input:not(:placeholder-shown)~.cut {
    transform: translateY(8px);
}

.placeholder {
    color: #fff;
    font-family: sans-serif;
    left: 20px;
    line-height: 14px;
    pointer-events: none;
    position: absolute;
    transform-origin: 0 50%;
    transition: transform 200ms, color 200ms;
    top: 20px;
}

.input:focus~.placeholder,
.input:not(:placeholder-shown)~.placeholder {
    transform: translateY(-30px) translateX(10px) scale(0.75);
}

.input:not(:placeholder-shown)~.placeholder {
    color: #808097;
}

.input:focus~.placeholder {
    color: #dc2f55;
}

.submit {
    font-weight: 700;
  display: flex!important;
  justify-content: center;
  align-items: center;
    background-color: #BB0000;
    border-radius: 8px;
    border: 0;
    box-sizing: border-box;
    color: #eee;
    cursor: pointer;
    font-size: 18px;
    height: 40px;
    margin-top: 38px;
    text-align: center;
    width: 90%;
}

.submit:active {
    background-color: #BB0000;
}
@media screen and (max-width: 900px){
.submit {
font-size: 12px;
}
}