.container-login-register {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
  flex-direction: column;
}

.choose-action {
  text-align: center;
  margin-bottom: 20px;
  
}

.btn-open-login{
  background-color: #6C89C6;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-family: Arial, Helvetica, sans-serif;
  color: white;
  font-weight: bold;
  font-size: 12px;
}


.btn-open-register{
  background-color: #6C89C6;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-family: Arial, Helvetica, sans-serif;
  color: white;
  font-weight: bold;
  font-size: 12px;
}

.btn-open-login:hover{
  background-color: orange;
  border-radius: 10px;
}


.btn-open-register:hover{
  background-color: orange;
  border-radius: 10px;
}


.login-title{

  color: #6C89C6;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
}

.choose-action button {
  margin: 5px;
  padding: 10px 20px;
}

.login-form{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.input-login{

  background-color:orange;
  border: 2px solid #6C89C6;
  cursor: pointer;
  border-radius: 5px;
}

.input-login:focus{

  background-color:#ffbf00;
  border: 2px solid #8396bf;
  outline: none;
  border-radius: 10px;
}

.checkbox-ricorda{

  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: row;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: bold;
  color: #6C89C6;
  text-transform: uppercase;
  width: 300px;
  height: 40px;
  
}


.checkbox-ricorda label{

  display: flex;
  align-items: center; /* opzionale, per allineare verticalmente il quadratino e il testo */
  gap: 10px; /* distanza tra il quadratino e il testo */
  white-space: nowrap;
  cursor: pointer;
}

.checkbox-ricorda label:hover{

  color: orange;
}

.checkbox-ricorda input[type="checkbox"] {
  margin-top: 10px; 
}

.btn-login{
  
  background-color:#6C89C6;
  border: 2px solid #a4bef7;
  cursor: pointer;
  border-radius: 5px;
  color: white;
  font-size: 12px;
  font-weight: bold;
  font-family: Arial, Helvetica, sans-serif;
  width: 300px;
}

.btn-login:hover{
  
  background-color:#ffbf00;
  border: 2px solid #8396bf;
}

.messaggio-errore{
  display: flex;
  background-color:#ffbf00;
  border: 2px solid #8396bf;
  width: 300px;
  height: 50px;
  justify-content: center;
}

.testo-messaggio{
  display: flex;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: bold;
  color: white;
  text-transform: uppercase;
  text-align: center;
  justify-content: center;
  align-items: center; 

}

.immagine_profilo_iscrizione{
  
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: bold;
  color: #6C89C6;
}


.immagine_profilo_player{
  
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: bold;
  color: #6C89C6;
}


.link-forgot-password{

  color: orange;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: bold;
  text-decoration: none;
}

.link-forgot-password:hover{

  color: #8396bf;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: bold;
  text-decoration: none;
}


.login-section, .register-section {
  width: 100%;
  max-width: 400px;
  margin-top: 20px;
}

form input, form button {
  display: block;
  width: 100%;
  margin-bottom: 10px;
  padding: 10px;
}



