.auth_container{
    min-height: 100vh;
    overflow: hidden;
    border-radius: 35px;
    max-width: 1500px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 100px 30px;
    background: url("/assets/img/redesign_images/Redefine_May22-5988.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

.auth_form_container{
    border-radius: 20px;
    padding: 30px 90px 30px 50px;
    background: white;
    display: flex;
    flex-direction: column;
    gap: 25px;
    font-family: 'Roboto';
    min-width: 300px;
    height: fit-content;
}

.auth_form{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}


.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
}

.auth_input {
  max-width: 250px;
  padding: 5px 10px;
  font-size: 17px;
  font-weight: 300;
  border-bottom: 2px solid black;
  border-top: 2px solid white;
  border-right: 2px solid white;
  border-left: 2px solid white;
  border-radius: 0px;
  outline: none;
  transition: 0.2s ease all;
}

.auth_label {
    position: absolute;
    top: 10%;
    font-size: 20px;
    left: 4%;
    color: black;
    transition: 0.2s ease all;
    background: white;
}
.auth_input:focus, .auth_input:not(:placeholder-shown){
    border: 2px solid black;
  border-radius: 5px;
}

.auth_input:focus + .auth_label, 
.auth_input:not(:placeholder-shown) + .auth_label{
    top: -30%;
    padding: 0px 2px;
    font-size: 11px;
}

.auth_submit_button{
    outline: none;
    border:none;
    background: black;
    color: white;
    padding: 5px 40px;
    width: fit-content;
    font-size: 20px;
}

.auth_anchor{
    text-decoration: underline !important;
    font-weight: bold;
    cursor: pointer;
    color: black;
}

.auth_anchor:hover {
  /*added to prevent default coloring*/ 
  color: inherit !important; 
}


.auth_divider{
    border: none;
    height: 2px;
    background: lightgrey;
    max-width: 300px;
    margin: 5px 0px;
}

.oAuth_option_button{
    border: 1px solid lightgrey;
    border-radius: 10px;
    width: 60px;
    height: 60px;
    cursor: pointer;
}

.auth_input_group{
    display: flex;
    flex-direction: row;
    gap: 25px;
    flex-wrap: wrap;
}