.container{
    width: 100%;
    background-color: #f3f4f6;
}
form{
    background-color: #fff;
    margin: auto;
    margin-top: 80px;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    border-radius: 10px;
}
form h2{
    color: #fa748d;
    font-size: 30px;
}
form .field{
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 15px;
}
.field input{
    all: unset;
    border: 2px solid #fe998c;
    border-radius: 10px;
    padding: 7px 12px;
}
.field input:focus{
    border: 2px solid #fa748d;
}
.field label{
    position: absolute;
    left: 25px;
    transition: all .3s ease;
}
.field input:valid ~ label,
.field input:focus ~ label{
    transform: translateY(-22px) translateX(5px);
    scale: 0.8;
    background: #fff;
    padding: 0 5px;
    border-left: 3px solid #fa748d;
    border-right: 3px solid #fa748d;
    border-radius: 5px;
}
form .signup{
    margin-bottom:10px;
    width: 100%;
    text-align: right;
}
form .signup a{
    text-transform: uppercase;
    text-decoration: none;
}


/* BUTTON - CSS  */
.animated-button {
    position: relative;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 16px 36px;
    border: 4px solid;
    border-color: transparent;
    font-size: 16px;
    border-radius: 100px;
    font-weight: 600;
    color: #fe998c;
    box-shadow: 0 0 0 2px #ffffff;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  }
  
  .animated-button svg {
    position: absolute;
    width: 24px;
    fill: #fe998c;
    z-index: 9;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
  }
  
  .animated-button .arr-1 {
    right: 16px;
  }
  
  .animated-button .arr-2 {
    left: -25%;
  }
  
  .animated-button .circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background-color: #fa748d;
    border-radius: 50%;
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
  }
  
  .animated-button .text {
    position: relative;
    z-index: 1;
    transform: translateX(-12px);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
  }
  
  .animated-button:hover {
    box-shadow: 0 0 0 12px transparent;
    color: #fff;
    border-radius: 12px;
  }
  
  .animated-button:hover .arr-1 {
    right: -25%;
  }
  
  .animated-button:hover .arr-2 {
    left: 16px;
  }
  
  .animated-button:hover .text {
    transform: translateX(12px);
  }
  
  .animated-button:hover svg {
    fill: #fff;
  }
  
  .animated-button:active {
    scale: 0.95;
    box-shadow: 0 0 0 4px #fa748d;
  }
  
  .animated-button:hover .circle {
    width: 220px;
    height: 220px;
    opacity: 1;
  }
  
/* /// ERROR - CSS \\\  */
.field .error-password:valid ~ label{
  border-left: 3px solid red;
  border-right: 3px solid red;
}
  .error-password:valid {
  border: 2px solid red;
}
.submit-button:disabled {
  background-color: gray;
}