* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-family: "Poppins", sans-serif;
}

.container {
    width: 100%;
    height: 100vh;
}

.container-background {
    width: 100%;
    height: 100vh;
    background-image: url("./assets/Portada_aula.png");
    background-size: cover;
    background-position: left;
}

.banner-info {
    background-color: #ffffffd5;
    height: 100vh;
    width: 100%;
    position: absolute;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8rem 0 3rem;
}

.banner-info_logo {
    height: 4rem;
}

.container-info {
    padding: 2.25rem;
    font-size: .9rem;
}

.container-code {
    text-align: center;
}

.container-student {
    margin-top: 4rem;
}

ul.custom-bullets {
    list-style: none;
    padding-left: 0;
}

ul.custom-bullets li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
}

ul.custom-bullets li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 20px;
    height: 20px;
    background-image: url('./assets/checklist.png');
    background-size: cover;
    background-repeat: no-repeat;
}


@media screen and (min-width: 768px){
    .container-background {
    background-position: center;
}

.banner-info {
    height: 100vh;
    width: 24rem;
    left: 8rem;
}
}