
:root {
    /*--font-family: -apple-system, BlinkMacSystemFont, sans-serif;*/
    --font-family: 'Open Sans', sans-serif;
}

* {
    --transparent-background: rgba(255, 255, 255, .3);
    --border-solid: 1px solid var(--transparent-background);
    margin: 0%;
    padding: 0%;
    outline: none;
    font-size: 14px;
}
body {
    margin-top: 1rem;
    margin-bottom: 1rem;
    padding-right: 1rem;
    padding-left: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, #f4f7f7, #fdfbfb);
    font-family: var(--font-family);
}

.containerForm {
    display: flex;
    flex-direction: column;
/*     background: var(--transparent-background); */
    padding: 1rem;
/*     border-radius: 20px;
    border-left: var(--border-solid);
    border-top: var(--border-solid);
    box-shadow: 20px 20px 40px -6px rgba(0, 0, 0, .2);
 */    /* text-align: center; */
}

p{
    margin-bottom: 2px;
}

.paraph {
    display: flex;
    flex-direction: column;
    background: var(--transparent-background);
    padding: 1rem;
    margin-bottom: 2rem;
    border-radius: 20px;
    border-left: var(--border-solid);
    border-top: var(--border-solid);
    box-shadow: 20px 20px 40px -6px rgba(0, 0, 0, .2);
    /* text-align: center; */
}

.center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.generalTitle{
    font-size: 1.3rem;
    font-weight: 800;
    color: #00649e;
}

.subTitle{
    font-size: 1rem;
    font-weight: 800;
    color: #00649e;
}

.importantNote2 {
    /* font-size: 14px; */
    box-shadow: 20px 20px 40px -6px rgba(0, 0, 0, .2);
    border-radius: 20px;
    border-left: var(--border-solid);
    border-top: var(--border-solid);
    text-align: center;
    background-color: #00275C;
    color: aliceblue;
    padding: 15px;
    margin-bottom: 10px;

}
.imgHome1 {
    display: none;
}

.imgHome2 {
    display: block;
    max-width: 80vw;
}

@media screen and (min-width: 750px) {
    * {
        font-size: 16px;
    }

    .generalTitle{
        font-size: 3rem;
    }
    .subTitle{
        font-size: 1.5rem;
    }
    .imgHome1 {
        display: block;
        max-width: 100vw;
    }

    .imgHome2 {
        display: none;
    }
    

}

