hr.solid {
  margin-top: 0px;
  margin-bottom: 0px;
  border-top: 3px solid #2D2D2D;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body, html {
    height: 100%;
    background-repeat: no-repeat;
    background: url(imagebackground.jpg) no-repeat center center fixed;
    background-size: 100% 100%;
  }
  
  .form-register {
    width: 400px;
    background: #f3f3f3;
    padding: 20px 30px 0px;
    margin: auto;
    margin-top: 10%;
    border-radius: 5x;
    font-family: 'calibri';
    color: black;
    /*box-shadow: 7px 13px 37px #000;*/
  }

  .selection-start {
    width: 100%;
    /*background: #f3f3f3;*/
    padding: 10px;
    margin: auto;
    border-radius: 4px;
    font-family: 'calibri';
    color: black;
    /*box-shadow: 7px 13px 37px #000;*/
  }
  
  .selection-start .botons {
    border: 2px solid #000000;
    width: 100%;
    background: #dddddd;
    padding: 18px;
    color: black;
    margin: 5px;
    font-size: 20px;
    display: flex;
    align-items: center;  /* Alinea el contenido verticalmente */
    justify-content: center;  /* Centra el contenido horizontalmente */
    height: 60px;  /* Altura fija para el botón */
    box-sizing: border-box;  /* Para incluir el padding en el cálculo del tamaño total */
}

.selection-start .botons .boton-icon-thin {
  width: 30px;
  height: 40px;
  margin-right: 15px;
  padding: 0;
}

.selection-start .botons .boton-icon-square {
  width: 40px;
  height: 40px;
  margin-right: 15px;
  padding: 0;
}

.selection-start .botons .boton-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    max-width: 75%;
    height: 40px;
    overflow: hidden;
}

.selection-start .botons .boton-label {
    font-size: 15px;
    margin: 0;
    padding: 0;
    word-wrap: break-word;
    white-space: normal;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
}

.selection-start .botons:hover {
    background-color: #bababa;
    box-shadow: 2px 2px 5px #000;
}

  
.form-register .botons {
  width: 100%;
  background: #0098cd;
  border: none;
  padding: 3px;
  color: white;
  margin: 16px;
  font-size: 20px;
}

.form-register .botons:hover {
  background-color: #03729a;
}