:root{
    --primary-color:#007AFC
}

.authentication-container{
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background-color: var(--primary-color);
    color: #fff;
}

.authentication-container form{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  width: 60%;
}

.authentication-container p{
    font-size: 18px;
}

.authentication-container span i{
  font-size: 50px;
}

.phone-input-section{
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 65%;
}

.phone-input-section input{
  height: 40px;
  border: none;
  outline: none;
  border-bottom: 1px solid #fff;
  background-color: transparent;
  font-size: 16px;
  color: #fff;
  font-weight: 600;
  text-align: center;
}

.get-otp-btn{
    color: #000;
    text-align: center;
    background-color: #fff;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    width: 50%;
    border-radius: 3px;
    border: none;
    outline: none;
    font-weight: 500;
    cursor: pointer;
}


@media screen and (max-width: 428px){
  .authentication-container form{
    width: 100%;
  }
}