* {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    color: #373737;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
    padding: 0;
}

.profile-img-card {
    width: 96px;
    height: 96px;
    margin: 0 auto 10px;
    display: block;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
}

/* ESTILOS SCROLL -------*/

*::-webkit-scrollbar {
    background: #282923;
    width: 15px;

}

/* Ponemos un color de fondo y redondeamos las esquinas del thumb */
*::-webkit-scrollbar-thumb {
    background: #BBC4FF;
    border-radius: 4px;
    box-shadow: 1px 1px 5px white inset,
        -2px -2px 3px grey inset;
}

/* Cambiamos el fondo y agregamos una sombra cuando esté en hover */
*::-webkit-scrollbar-thumb:hover {
    background: #697BFC;
    box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.2);
}

/* Cambiamos el fondo cuando esté en active */
*::-webkit-scrollbar-thumb:active {
    background-color: #D5E9FF;
}

/* FIN ESTILOS SCROLL ------- */


/*--------------------------------------------------------*/
/*--------- SCREEN PC MIN 1024PX -------------------------------*/

@media screen and (min-width: 1024px) {
    body {
        width: 100%;
        height: auto;
        background-attachment: fixed;
        background: #ffffff;
        background: -webkit-linear-gradient(to top, #FFFFFF, #ffffff);
        background: linear-gradient(to top, #FFFFFF, #ffffff);
    }

    #container {
        position: relative;
        width: 100%;
        height: auto;
        max-width: 1200px;
        min-height: 100vh;
        margin: auto auto;
        margin-top: 5%;
    }

    header {
        width: 100%;
        height: 15vh;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column-reverse;
    }

    header img {
        height: 77%;
        box-shadow: 2px 3px 7px #5c5c5c;
        margin-top: 2%;
        margin-bottom: 2%;
    }

    .tit {
        text-align: center;
    }

    main {
        width: 100%;
        height: auto;
        margin-top: 0%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    main form {
        width: 30%;
        min-width: 360px;
        height: 66vh;
        padding: 2% 3% 0 3%;
        margin-top: 1%;
    }

    main form div {
        width: 100%;
        padding: 3% 0;
        margin-top: 4%;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }

    main form div h4 {
        padding-left: 1%;
        font-size: 1.2rem;
        font-weight: normal;
    }

    main form div input {
        font-size: 1.5rem;
        padding-left: 2%;
        border-radius: 7px;
        border: 0;
        border-bottom: 3px solid #808080cc;
        background: rgb(88, 88, 88);
        background: linear-gradient(0deg, rgba(88, 88, 88, 3%) 0%, rgba(255, 255, 255, 21%) 100%);
    }

    main form .boxBtn {
        display: flex;
        flex-direction: row;
        justify-content: center;
    }

    main form .boxBtn input {
        width: 50%;
        padding-left: 0%;
        cursor: pointer;
        background: #0BB01E;
        color: white;
        transition: 1s ease all;
    }

    main form .boxBtn input:hover {
        padding-left: 0%;
        cursor: pointer;
        background: #2B2FEA;
        color: white;
        transition: 1s ease all;
    }

    footer {
        position: absolute;
        bottom: 0;
        width: 100%;
        height: 5vh;
        display: flex;
        font-size: 0.7rem;
        justify-content: center;
        align-items: center;
        color: black;
        background: white;
    }


}






/*--------------------------------------------------------*/
/*--------- SCREEN PORTRAIT-------------------------------*/

@media screen and (min-width: 720px) and (max-width: 1023px) {
    body {
        width: 100%;
        height: auto;
        min-height: 600px;
        background: white;
        background: -webkit-linear-gradient(to top, #FFFFFF, #ffffff);
        background: linear-gradient(to top, white, white);
    }

    #container {
        position: relative;
        width: 100%;
        height: auto;
        max-width: 1200px;
        min-height: 100vh;
        margin: auto auto;
        margin-top: 2%;
    }

    header {
        width: 100%;
        height: 10vh;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    header img {
        height: 100%;
        box-shadow: 2px 3px 7px #5C5C5C;
    }

    .tit {
        text-align: center;
        margin-left: 3%;
        font-size: 1.8em;
    }

    main {
        position: relative;
        width: 100%;
        height: auto;
        margin-top: 5%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    main form {
        width: 90%;
        height: auto;
        padding: 2% 3% 0 3%;
        margin-top: 1%;
    }

    main form div {
        width: 100%;
        padding: 3% 0;
        padding-top: 1%;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }

    main form h3 {
        font-size: 2em;
    }

    .boxInputUser {
        height: auto;
        padding: 10px 0;
    }

    .boxInputUser h4 {
        font-size: 2em;
    }

    .boxInputUser input {
        font-size: 2em;
        max-width: 500px;
    }

    main form div h4 {
        padding-left: 1%;
        font-size: 1.2rem;
        font-weight: normal;
    }

    main form div input {
        font-size: 1.5rem;
        padding-left: 2%;
        border-radius: 7px;
        border: 0;
        border-bottom: 3px solid #808080cc;
        background: rgb(88, 88, 88);
        background: linear-gradient(0deg, rgba(88, 88, 88, 3%) 0%, rgba(255, 255, 255, 21%) 100%);
        margin-top: 1%;
    }

    main form .boxBtn {
        display: flex;
        flex-direction: row;
        justify-content: center;
        margin-top: 10%;
    }

    main form .boxBtn input {
        width: 50%;
        padding-left: 0%;
        padding: 12px;
        cursor: pointer;
        background: #0BB01E;
        color: white;
        transition: 1s ease all;
        font-size: 2em;
    }

    main form .boxBtn input:hover {
        padding-left: 0%;
        padding: 12px;
        cursor: pointer;
        background: #2B2FEA;
        color: white;
        transition: 1s ease all;
        font-size: 2em;
    }

    footer {
        position: relative;
        bottom: 0;
        width: 100%;
        height: auto;
        display: flex;
        font-size: 0.7rem;
        justify-content: center;
        align-items: center;
        color: black;
        background: white;
        text-align: center;
        font-size: 2em;
    }


}



/*--------------------------------------------------------*/
/*--------- SCREEN PORTRAIT MINI--------------------------*/

@media screen and (max-width: 719px) {
    body {
        width: 100%;
        height: auto;
        min-height: 600px;
    }

    #container {
        position: relative;
        width: 100%;
        height: auto;
        max-width: 1200px;
        min-height: 500px;
        margin: auto auto;
        margin-top: 2%;
    }

    header {
        width: 100%;
        height: 10vh;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    header img {
        height: 100%;
        box-shadow: 2px 3px 7px #5C5C5C;
    }

    .tit {
        text-align: center;
        margin-left: 3%;
        font-size: 1.2em;
    }

    main {
        position: relative;
        width: 100%;
        height: auto;
        margin-top: 5%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    main form {
        width: 90%;
        height: auto;
        padding: 2% 3% 0 3%;
        margin-top: 1%;
    }

    main form div {
        width: 100%;
        padding: 3% 0;
        padding-top: 1%;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }

    main form h3 {
        font-size: 1em;
    }

    .boxInputUser {
        height: auto;
        padding: 3px 0;
    }

    .boxInputUser h4 {
        font-size: .9em;
    }

    .boxInputUser input {
        font-size: 1em;
        max-width: 300px;
    }

    main form div h4 {
        padding-left: 1%;
        font-size: 1.2rem;
        font-weight: normal;
    }

    main form div input {
        font-size: 1.5rem;
        padding-left: 2%;
        border-radius: 7px;
        border: 0;
        border-bottom: 3px solid #808080cc;
        background: rgb(88, 88, 88);
        background: linear-gradient(0deg, rgba(88, 88, 88, 3%) 0%, rgba(255, 255, 255, 21%) 100%);
        margin-top: 1%;
    }

    main form .boxBtn {
        display: flex;
        flex-direction: row;
        justify-content: center;
    }

    main form .boxBtn input {
        width: 50%;
        padding-left: 0%;
        cursor: pointer;
        background: #0BB01E;
        color: white;
        transition: 1s ease all;
    }

    main form .boxBtn input:hover {
        padding-left: 0%;
        cursor: pointer;
        background: #2B2FEA;
        color: white;
        transition: 1s ease all;
    }

    footer {
        position: relative;
        bottom: 0;
        width: 100%;
        height: auto;
        display: flex;
        font-size: 0.7rem;
        justify-content: center;
        align-items: center;
        color: black;
        background: rgb(255, 255, 255);
        text-align: center;
    }


}