body{
    background-color: #dee9ff;
}

.registration-form{
	padding: 10px 0;
}

.registration-form form{
    background-color: #fff;
    max-width: 900px;
    margin: auto;
    padding: 50px 70px;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.075);
}

.registration-form .form-icon{
	text-align: center;
    background-color: #1220ff;
    border-radius: 50%;
    font-size: 40px;
    color: white;
    width: 100px;
    height: 100px;
    margin: auto;
    margin-bottom: 50px;
    line-height: 100px;
}

.registration-form .item{
	border-radius: 20px;
    margin-bottom: 10px;
    padding: 6px 20px;
}

.registration-form .header{
	border-radius: 20px;
    margin-bottom: 10px;
    padding: 6px 10px;
    font-size: 125%;
    text-align: center;
}

.registration-form .create-account{
    border-radius: 30px;
    padding: 10px 20px;
    font-size: 18px;
    font-weight: bold;
    background-color: #1220ff;
    border: none;
    color: white;
    margin-top: 20px;
}

.registration-form .social-media{
    max-width: 900px;
    background-color: #fff;
    margin: auto;
    padding: 35px 0;
    text-align: center;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    color: #9fadca;
    border-top: 1px solid #dee9ff;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.075);
}

.registration-form .social-icons{
    margin-top: 30px;
    margin-bottom: 8px;
}

.registration-form .social-icons a{
    font-size: 23px;
    margin: 0 3px;
    color: #5691ff;
    border: 1px solid;
    border-radius: 50%;
    width: 45px;
    display: inline-block;
    height: 45px;
    text-align: center;
    background-color: #fff;
    line-height: 45px;
}

.registration-form .social-icons a:hover{
    text-decoration: none;
    opacity: 0.6;
}


select option{
  word-wrap: break-word;
  white-space: normal;
}


@media (max-width: 576px) {
    .registration-form form{
        padding: 50px 20px;
    }

    .registration-form .form-icon{
        width: 70px;
        height: 70px;
        font-size: 30px;
        line-height: 70px;
    }
}


{
  box-sizing: border-box;
}

/* Create two equal columns that floats next to each other */
.column {
  float: left;
  width: 50%;
  padding: 10px;
 }
/* Create two equal columns that floats next to each other */
.column-right {
  float: right;
  width: 50%;
  padding: 10px;
  text-align: right;
 }

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .column {
    width: 100%;
  }
   .column-right {
    width: 100%;
  }      
}

/* ELementos del menú */
.topnav {
  overflow: hidden;
  background-color: #white;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;        
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;        

}

.topnav a {
  float: left;
  display: block;
  color: #323232;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

.topnav a:hover {
  background-color: #ddd;
  color: black;
}

.topnav a.active {
  background-color: #dee9ff;
  color: black;
}

.topnav .icon {
  display: none;
}

@media screen and (max-width: 600px) {
  .topnav a:not(:first-child) {display: none;}
  .topnav a.icon {
    float: right;
    display: block;
  }
}

@media screen and (max-width: 600px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
}

/*errores*/
.error
{
 border:1px solid red;
}


/*tooltip*/
   .tooltip-container {
     position: relative;
     display: inline-block;
   }
   .tooltip-text {
     visibility: hidden;
     width: 240px;
     background-color: #dee9ff;
     color: #000;
     text-align: center;
     border-radius: 6px;
     padding: 5px;
     position: absolute;
     z-index: 1;
     bottom: 125%; /* Posiciona el tooltip encima del elemento */
     left: 50%;
     transform: translateX(-50%);
     opacity: 0;
     transition: opacity 0.3s;
   }
   .tooltip-container:hover .tooltip-text {
     visibility: visible;
     opacity: 1;
   }
   .fa-question-circle:hover .tooltip-text {
     visibility: visible;
     opacity: 1;
   }
