:root {
    --anchoMinCont: 320px;
    --anchoCont: 70vw;
    --anchoMaxCont: 956.2px;

    --login-bg: #fff7aa;
    --title-bg: #333;
    --button-bg: #0568ca;
    --link: #111;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    height: 100%;
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #61B2FD;
}

.register-container {
    margin: 40px auto;
    min-width: var(--anchoMinCont);
    width: var(--anchoCont);
    max-width: var(--anchoMaxCont);
    background-color: var(--login-bg);
    border-radius: 5px;
    display: flex;
    border: 1px solid #666;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.register-info-container{
    padding: 50px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.title {
    font-size: 1.5em;
    line-height: 1.5em;
    font-weight: 700;
    text-align: center;
    color: var(--title-bg);
    margin: 0;
    margin-bottom: 25px;
    width: 95%;
}

.subtitle {
    font-size: 1.35em;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--title-bg);
    margin-bottom: 0.75em;
}

.form-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 95%;
}

.input {
    padding-left: 20px;
    margin-bottom: 0.5rem;
    font-size: 1em;
    letter-spacing: 1px;
    border: 1px solid #bbb;
    display: inline;
}

.input:focus {
    outline: none;
    border: 2px solid var(--button-bg);
}

.notas {
    padding: 0.75em 2.5em 1.5em 0;
    font-size: 0.95em;
    display: flex;
    flex-direction: column;
    align-items: start;
}

.titulo-notas {
    font-size: 1em;
    font-weight: 600;
}

.lista {
    margin-left: 2.5em;
    text-align: justify;
}

.lista li {
    padding: 0.2em 0;
}

.input,
.btn {
    width: 100%;
    height: 3.125rem;
    line-height: 3.125rem;
    font-weight: 600;
    border-radius: 5px;
}

.btn {
    color: #fff;
    font-size: 1.2em;
    line-height: 0;
    background-color: var(--button-bg);
    cursor: pointer;
    margin-bottom: 1.5em;
    border: 1px solid #055cb4;
}

.form-container p {
    text-align: center;
}

.enlace {
    cursor: pointer;
    font-weight: 600;
    color: var(--link);
    text-decoration: underline;
    display: inline-block;
}

.enlace:hover {
    color: blue;
}

@media screen and (max-width: 1097px) {
    :root {
        --anchoCont: 85vw;
    }
}

@media screen and (max-width: 668px) {
    :root {
        --anchoCont: 100vw;
    }

    .register-container {
        margin: 0;
        border-radius: 0;
        border: none;
        box-shadow: none;
        min-height: 100vh;
    }

    .register-info-container{
        padding: 35px;
    }

    .title{
        width: 100%;
    }

    .form-container {
        width: 100%;
    }
}

@media screen and (max-width: 391px) {
    body {
        font-size: 15px;
    }
}