
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body, html {
    height: 100%;
    font-family: Arial, sans-serif;
}


.container {
    display: flex;
    height: 100vh;
}


.left-section {
    flex: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(rgb(236 36 79 / 57%), rgb(236 36 79)), url("/assets/img/campus2.jpg") no-repeat center center;
    background-size: cover;
    padding: 0 20px 50px;
}



.right-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: white;
    color: black;
    padding: 20px;
}


form {
    width: 100%;
    max-width: 360px;
    background: white;
    padding: 20px;
    border-radius: 8px;


}



.logo {
    width: 100%;
    display: flex;
    justify-content: center;
}

.logo img {
    width: 250px;
}


.input-group {
    margin-bottom: 20px;
}

input[type="text"], input[type="password"] {
    width: 100%;
    padding: 10px;
    border: none;
    border-bottom: 2px solid #cccccc;
    transition: border-color 0.2s;
    font-size: 18px;
}

input[type="text"]:focus, input[type="password"]:focus {
    border-bottom-color: #e91e63; /* Un color llamativo para el foco */
    outline: none;
}

.button-submit {
    margin-top: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
}

button {
    width: 60%;
    padding: 16px 20px;
    background-color: #e91e63; /* Color principal llamativo */
    color: white;
    border: none;
    font-size: 18px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
}

button:hover {
    background-color: #c2185b; /* Un tono más oscuro para hover */
}

h1, h2, p {
    margin: 0 80px 10px;
    color: #fff;
}

/* Media Queries para dispositivos con pantalla pequeña */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .left-section {
        display: none;
    }

    .right-section {
        flex: none;
        width: 100%;
        height: 100vh;
        justify-content: center;
    }
}
