/*CSS PARA EL LOGIN*/

.container_login {
    background-color: antiquewhite;
    display: flex;
    justify-content: center; 
    align-items: center; 
    height: 100vh; 
}

.portada {
    display: flex;
    flex-direction: column;
    justify-content: center; 
    align-items: center; 
    flex: 1; 
    max-width: 50%;
}

form {
    display: flex;
    flex-direction: column;
    justify-content: center; 
    align-items: center; 
    flex: 1; 
    margin-left: 20px; 
   max-width: 50%;
}
.imagen img{
    width: 250px;
}


form {
    flex: 1; 
    max-width: 50%; 
    margin-left: 20px;
    background-color: #f2f2f2;
    padding: 20px; 
    border-radius: 15px; 
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); 
    font-family: 'myColombia';
    margin-right: 20px;
}

.form-group {
    margin-bottom: 20px;
}

label {
    font-family: 'myColombia';
    display: block; 
    margin-bottom: 5px; 
}

input[type="text"],
input[type="password"],input[type="email"] {
    width: 100%; 
    padding: 10px; 
    border: 1px solid #ccc; 
    border-radius: 10px; 
}

button[type="submit"] {
    background-color: #1fe0ba; 
    color: #fff; 
    padding: 10px 20px; 
    border: none; 
    border-radius: 5px; 
    cursor: pointer; 
    transition: background-color 0.3s ease; 
    margin-top: 20px;
    font-family: 'myColombia';
}

button[type="submit"]:hover {
    background-color: #15c6a2; 

}
.politica {
    display: flex; 
    align-items: center;
    margin-top: 20px;
}

input[type="checkbox"] {
    margin-right: 10px; 
}
h2,
.form-group label {
    font-weight: bold; 
}

button[type="submit"]:disabled {
    background-color: gray; 
    cursor: not-allowed; 
}
.enlace{
    color: blue;
}


/*CONTENEDOR REGISTRO*/

.container {
    display: flex;
    justify-content: center;
    align-items: center; 
    height: 100vh; 
    background-color:antiquewhite ;
    width: 120%;
}

.portada {
    flex: 1; 
    margin-right: 20px; 
}

form {
    flex: 1; 
    max-width: 50%; 
}

hr{
    margin-right: 60px;
}
H3{
    font-family: 'myColombia';
}

::placeholder {
    
    font-style: 'myColombia'; 
}



