.custom-field{
height: 48px;
min-width: 400px;
padding: 1rem;
border-radius: 16px;
border: 1px solid black;
}
.copy-button {
  padding: 10px;
  background-color: #4CAF50;
  color: white;
  border: none;
  cursor: pointer;
  font-weight: bold;
  border-radius: 5px;
  margin: 0 auto;
}

.subtitle{
text-align: center;
max-width: 30rem;
margin-bottom: 2rem;
}
.flex-center{
display:flex;
align-items; center;
justify-content: center;
}
.copy-button:hover {
background-color: #45a049;
}
/* Resto del estilo del formulario y la página */
.wrapper{
background-color: #f9f9f9; }
#time{
background-color: #ffffff;
}

form {
max-width: 400px;
margin: 0 auto;
}
label {
display: block;
margin-bottom: 5px;
}
input[type="number"],
/* textarea,
select {
width: 100%;
padding: 5px;
margin-bottom: 10px;
}
/
input[type="submit"],
/ button {
padding: 10px;
background-color:#546EAF;
color: white;
border: none;
cursor: pointer;
} */
.button-support-onetimesecret {
background-color: #546EAF;
color: white;
height: 48px;
margin-top: 4rem;
padding: 0 1.5rem 0 1.5rem;
cursor: pointer;
border-radius: 10px;
border: none;
font-size: 18px;
}

.button-support-onetimesecret:hover {
  background-color: #ffc300;
}
/* input[type="submit"]:hover, */
/* button:hover {
background-color: #45a049;
} */
#decryptedSecret {
margin-top: 20px;
}

#secretId{
    text-align: center;
    min-width: 90%;
    height: 48px;
    outline: none;
    margin: 0 auto;
    border-radius: 16px;
    padding: 0 5% 0 5%;
    z-index: 100;
}

textarea{
width: 100%;
padding: 5px;
margin-bottom: 10px;
min-height: 150px;
}
.container-center{
display: flex;
flex-direction: column;
align-items: center;
}
/* Estilo personalizado para el select */
select {
height: 40px;
appearance: none;
-webkit-appearance: none;
-moz-appearance: none;
padding: 8px;
background-color: #ffffff;
border: none;
border-radius: 5px;
font-size: 14px;
color: #555555;
}
select:hover {
background-color: #ffffff;
}
select:focus {
outline: none;
}
.wrapper-buttons{
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
    flex-direction: column;
    align-items: center;
}