* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body{
    padding: 20px;
    font-family: Inter;
    display: flex;
    justify-content: center;
}

.grid-container>* {
    box-shadow: 10px 6px 37px -13px rgba(51, 51, 51, 0.74);
    border-radius: 10px;
    padding: 35px 90px 90px 90px;
    text-align: center;
    font-weight: 500;
}

.grid-container {
    display: grid;
    gap: 20px;
    grid-template:
        "main";

    .sidebar {
        grid-area: sidebar;
        background-image: url("../images/login.jpg");
        background-size: cover;
        background-position: center center;
        height: 709px;
        width: 617px;
    }

    .main {
        grid-area: main;
        height: 709px;
        width: 627px;
    }


    @media (min-width:768px) {
        grid-template:
            "main main" auto

    }
    @media (min-width:992px) {
        grid-template:
            "main sidebar" auto

    }
}

.ingres-a-tu {
    align-self: stretch;
    position: relative;
    font-weight: 600;
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), #121315;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.establece-las-credenciales {
    align-self: stretch;
    font-size: 14px;
    color: #4d5555;
}
.ingres-a-tu-cuenta-parent {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 5px;
    font-size: 28px;
}

.usuario {
    align-self: stretch;
    font-weight: 600;
    text-align: left;
    font-size: 14px;
}

.usuario-parent {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
    margin-top: 4%;
}

.olvidaste-tu-contrasea {
    font-weight: 600;
    color: #0a4a83;
    cursor: pointer;
    font-size: 14px;
    margin-top: 3%;
    text-align: left;
}

.button {
    border-radius: 8px;
    background-color: #0a4a83;
    padding: 12px 15px;
    color: #fff;
    margin-top: 3%;
    width: 100%;
    cursor: pointer;
}

.sistema-de-informacin {
    width: 280px;
    flex-shrink: 0;
}

.sistema-de-informacin-del-lab-wrapper {
    border-radius: 20px 20px 20px 20px;
    background-color: #fff;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-top: 4%;
    font-size: 14px;
    color: #4d5555;
}

.input-icon {
    align-self: stretch;
    border-radius: 8px;
    background-color: #fff;
    border: 1px solid #dee2e6;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    padding: 12px;
    gap: 10px;
    color: #4d5555;
}