.otp-form , .phoneINP-form{
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  max-width: 400px;
  width: 100%;
  margin-top: 20px;
}

.otpTitre{
  margin-bottom: 20px;
  color: #333;
  font-size: 24px;
}

.otp-container{
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.otp-input {
  width: 40px;
  height: 40px;
  text-align: center;
  font-size: 18px;
  margin: 0 5px;
  border: 1px solid #ccc;
  border-radius: 4px;
  outline: none;
  transition: border-color 0.3s;
}

.otp-input:focus{
  border-color: #007bff;
}

#verificationCode{
  width: 100%;
  margin-top: 15px;
  padding: 10px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
  outline: none;
  transition: border-color 0.3s;
}

#verificationCode:focus{
  border-color: #007bff;
}

.otpBtn , .phoneBtn{
  margin-top: 15px;
  background-color: #389425;
  opacity: 1;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
  width: 80%;
  height: 40px;
}

.phoneBtn{
  display: flex;
  align-items: center;
  justify-content: center;
}

.phoneBtnSpan{
  display: inline;
}

.phoneBtnLoader{
  height: 25px;
  display: none;
}

.otpBtn:hover {
  background-color: #0056b3;
}

.topImage{
  width: 250px;
  margin-top: -60px;
}

.phoneINP{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

#myphone{
  width: 80%;
  height: 40px;
  border: none;
  border-radius: 10px;
  margin-top: 10px;
  text-align: center;
  font-size: 16px;
  
}