<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
   
}

body {
    font-family: 'Inter', sans-serif !important;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding-top: 0px;
}

.container {
    background-color: #fff;
    padding: 50px 40px 80px;
    border-radius: 2px;
    box-shadow: 0px 3px 9px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 500px;
    width: 100%;
    margin-top: -135px;
    border: 0px solid #000;
}

h2 {
    margin-bottom: 20px;
    color: #333;
}

.form-group {
    position: relative;
    margin-bottom: 15px;
}

/*input*/
input[type="text"],
input[type="email"],
input[type="password"] {
    width: 90%;
    padding: 35px 12px 10px 20px;
    border: 1px solid #101011;
    border-radius: 2px;
    font-size: 16px;
    height: 65px;
}

/* place holder */
.form-group label {
    position: absolute;
    top: 50%;
    left: 40px;
    transform: translateY(-50%);
    font-size: 20px;
    color: #999;
    transition: all 0.3s ease;
    pointer-events: none;
}

/* place hoder focus */
.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label {
    top: 10px;
    bottom: 10px;
    font-size: 14px;
    color: #333;
    transform: translateY(0);
    padding-bottom: 20px;
    font-weight: 700;
}

input::placeholder {
    opacity: 0;
    /*color: red !important;*/
}

.btn {
    background-color: #000;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 2px;
    width: 90%;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
    margin-top: 0px;
}

.btn:hover {
    background-color: #333;
}

.login {
    margin-top: 15px;
    font-size: 14px;
    background-color: #f7f9fa;
    padding-top: 1rem;
    padding-bottom: 1rem;
    text-align: center;
}

.login a {
    color: #000;
    font-weight: 700;
    text-decoration: none;
}

.login a:hover {
    text-decoration: underline;
}

.iniciar-sesion {
    padding-left: 10px;
}

input:-webkit-autofill {
    background-color: #fff !important;
    color: #000 !important;
    box-shadow: 0 0 0px 1000px white inset;
    -webkit-text-fill-color: #000 !important;
}

.toggle-password {
    position: absolute;
    top: 50%;
    right: 50px;
    transform: translateY(-50%);
    font-size: 18px;
    color: #999;
    cursor: pointer;
}

.nombre-curso {
    background-color: #2D2F31;
    color: white;
    height: 50px;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom:60px !important;
}


.forgot-password {
    padding: 10px;
    text-decoration: none;
    color: #000;
    font-weight: 700;
    text-decoration: none;
    font-size: 14px;
    margin-top: 15px;
}

.forgot-password a  {
    padding: 10px;
    color: #000;
    font-weight: 700;
    text-decoration: line;
    font-size: 14px;
    margin-top: 15px;
}


.password-error, .email-error, .cc-error {

    width: 90%;
    background-color: #EDD7D7;
    color: #ba5b38;
    padding: 15px;
    font-weight: 500;
    margin-bottom: 15px;
    margin-left: auto;
    margin-right: auto;
    border : 1px solid #ba5b38 !important;

}

.email-error i {
    margin-left: 5px;
}


input:focus {
    color: black !important;
}





@media only screen and (max-width: 600px) {
    .container {
        box-sizing: border-box;
        padding: 20px;
        border: none;
        box-shadow: none;
    }

    .form-group {
        margin-bottom: 8px;
    }
}




/* placeholder con datos */
input:-webkit-autofill + label {
    transform: translateY(-50%);
}


input:autofill + label {
    transform: translateY(-50%);
    font-size: 1em;
}





</pre></body></html>