@import url("https://fonts.googleapis.com/css?family=Poppins:400,300,700");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  width:100%;
}
body {
  height: 100vh;
  align-items: center;
  justify-content: center;
  /*background: #000000;*/
  /*overflow: hidden;*/
}


.container{
  width: 300px;
  height: auto;
  padding: 40px 30px;
  background-color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.15);
}

.number{
  width: 300px;
  height: auto;
  padding: 40px 18px;
  background-color: #d6d6d6;
  display: block;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.15);
}

h4{
  font-size: 20px;
  color: #121212;
  text-align: center;
}

.form{
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 20px;
}

.input_field_box{
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
}

.input_field_box input{
  border: none;
  max-width: 20%;
  height: 60px;
  text-align: center;
  border-radius: 5px;
  background: #f0f0f0;
  font-size: 25px;
}
.telefono{
  border: none;
  max-width: 100%;
  height: 40px;
  text-align: center;
  border-radius: 5px;
  background: #f0f0f0;
  font-size: 18px;
}

.input_field_box input::-webkit-inner-spin-button,
.input_field_box input::-webkit-outer-spin-button {
  display: none;
}

.input_field_box input:focus{
  outline: 1.5px solid #00b991;
  outline-offset: 2px;
}

.button {
  margin-top: 25px;
  width: 92%;
  color: #ffffff;
  font-size: 16px;
  padding: 10px 0;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  background: #000000;
  transition: all 0.1s ease;
}

form button {
  margin-top: 25px;
  width: 92%;
  color: #ffffff;
  font-size: 16px;
  padding: 10px 0;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  pointer-events: none;
  cursor: pointer;
  background: #000000;
  transition: all 0.1s ease;
}
form button.active {
  background: #ffcc00;
  pointer-events: auto;
  color: #000000;
}
form button:hover {
  background: #e6b801;
}
