* {
    user-select: none;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-image: url(./assets/ab_unef2.jpg);
}

main {
    background-image: url(./assets/ab_unef2.jpg);
    /* background-color: #AF4D11; */
    color: #fff;
    background-position: right;
    background-repeat: no-repeat;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

#copy {
    color: white;
}

@media (max-width: 1180px) {
    body {
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    main {
        background-size: cover;
    }
}


/* LEFT SIDE */
#left-side {
    padding: 2% 6% 0 0;
}

/* CONTENT */
#content {
    margin-left: 6%;
}

/* TITLE */
#title {
    padding-left: 1%;
    border-left: 2px solid #fff;
    margin-bottom: 2%;
}

#greeting {
    font-size: 2rem;
    font-weight: 400;
}

#title h1 {
    font-size: 2em;
}

/* SELECT OPTIONS */
#select {
    max-width: 60vh;
    margin-top: 60px;
}

a {
    text-decoration: none;
}

/* OPTIONS */
.options {
    background-color: #373535;
    border-radius: 50em;
    margin-top: 2.5%;
    display: flex;
    align-items: center;
    gap: 1.5%;
    font-size: 2.5vh;
    color: #200f81;
    transition: ease-out .3s;
    max-width: 38vh;
    height: 60px;
    color: white;
    text-decoration: none;
}

.options:hover {
    /* color: #309cb4; */
    color: #FA6609;
    box-shadow: 0 0 10px #000;

    img {
        animation: rotateAndBack 1s linear;
    }
}

@keyframes rotateAndBack {
    0% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(360deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

.arrow-right {
    width: 3.7vh;
    transition: .3s;
}

.options:hover .arrow-right {
    transform: rotate(90deg);
}

.options .activated {
    transform: rotate(90deg);
}

.options p {
    display: flex;
    align-items: center;
    gap: 2%;
    width: 100%;
    font-size: 20px;
}

/* CROWN ICON */
.gn_colorful {
    width: 4.5vh;
    margin: 3px 2px 3px 8px;
    border-radius: 5em;
}

/* ARROW ICON */
.interaction {
    width: 3.7vh;
    margin-right: 5px;
}

/* LOGO */
#logodiv {
    position: absolute;
    bottom: 0;
    margin-left: 31vh;
}

#logo-branca {
    width: 25vh;
}

@media (max-width: 1180px) {
    #logodiv {
        margin: 0;
        width: 100%;
        display: flex;
        justify-content: center;
        bottom: 4vh;
    }

    #content {
        margin-top: 4em;
    }

    .options {
        max-width: 38vh;
        margin-top: 2%;
    }

    #greeting {
        font-size: 1.2em;
    }

    #title h1 {
        font-size: 1.8em;
    }
}

@media (max-width: 690px) {
    #title h1 {
        text-align: center;
    }
}

.loginDiv {
    position: fixed;
    z-index: 5;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    /* max-width: 90%; */
    opacity: 0;
    pointer-events: none;
    transition: ease .3s;
}

.card {
    padding: 5em 1em;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
    /* height: 75vh; */
    padding-inline: 3em;
    border-radius: 4px;
    box-shadow: 0 0 20px #00000090;
}

#logo-azul-login {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 10%;
}

.inputs {
    width: 85%;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 8%;
    gap: 5px;
    color: #2469aa;
}

label {
    color: #2D73B4;
    font-size: 18px;
}

.inputs input {
    border: none;
    border-bottom: 2px solid #000;
    border-color: #2D73B4;
    font-size: 20px;
    width: 100%;
    color: #2469aa;
    transition: ease .3s;
}

.inputs input:focus {
    outline: none;
    border-bottom: 2px solid #55bb9b;
}

.link {
    text-decoration: none;
    color: #2D73B4;
}

#loginButton {
    padding: .8em 3em;
    margin-bottom: 5%;
    margin-top: 3%;
    background-color: #2D73B4;
    border: none;
    border-radius: 4px;
    color: #fff;
    cursor: pointer;
    font-size: 16px;
    transition: ease .3s;
}

#loginButton:hover {
    background-color: #27649e;
}

#choices {
    display: flex;
    width: 100%;
    justify-content: center;
    gap: 10px;
}

#choices p {
    width: 2%;
    text-align: center;
}

#choices a {
    width: 49%;
}

#call_update_password {
    text-align: end;
    cursor: pointer;
}

@keyframes notify {
    from {
        font-size: 1px;
    }

    to {
        font-size: 16px;
    }
}

@keyframes bounce {
    0% {
        transform: translatey(0px);
    }

    33% {
        transform: translatey(-3px);
    }

    66% {
        transform: translatey(3px);
    }

    100% {
        transform: translatey(0px);
    }
}

#notification {
    display: none;
    color: #e22f2f;
    margin-bottom: 5%;
    font-size: 16px;
}

.notifyAnimation {
    animation: notify 0.4s;
}

.inputs .error {
    border-color: #e22f2f;
}

.bounce {
    animation: bounce .5s;
}

.fade {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    opacity: 0;
    pointer-events: none;
    transition: ease .5s;
}

@media (max-width: 1180px) {
    .fade {
        opacity: .6;
        z-index: -1;
    }
}

.unhide {
    transition: ease .5s;
    opacity: 1;
    pointer-events: inherit;
    z-index: 3;
}

/* SEARCH */
#google_search {
    position: absolute;
    top: 3%;
    right: 6.5%;
    z-index: 2;
    display: flex;
    align-items: center;
}

#search {
    width: 29em;
    padding-left: .8em;
    padding-right: 2.8em;
    height: 2.5em;
    border-radius: 50em;
    color: #2D73B4;
    border: 2px solid #0F054C;
    transition: ease .3s;
}

#search:focus {
    outline: none;
    border: 2px solid #2D73B4;
}

#lens {
    width: 18px;
    margin-left: -1.9em;
}

/* RIGHT SIDE */
#right-side {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
}

/* NAV MENU */
#menu {
    list-style: none;
    display: flex;
    gap: 3%;
    justify-content: end;
    padding: 3.2em 6% 0 0;
    font-size: 2.5vh;
}

/* MENU ITEMS */
.login_logout {
    width: 5%;
    padding: 1vh 0;
    text-align: center;
    cursor: pointer;
    color: #5eb0fd;
    transition: ease .2s;
    display: none;
}

.login_logout:hover {
    text-shadow: 0 0 5px #5eb0fd;
}

#admin {
    background-color: #2D73B4;
    padding: 1vh 0;
    width: 15%;
    border-radius: 1.5vh;
    cursor: pointer;
    transition: ease .3s;
    text-align: center;
    display: none;
}

#admin:hover {
    background-color: #275f94;
}

@media (max-width: 1180px) {
    #right-side {
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-top: 2px solid #08012e;
    }

    #menu {
        width: 100%;
        justify-content: center;
        padding: 3% 1%;
        gap: 5%;
    }

    .login_logout {
        width: 47%;
        background-color: #fff;
        border-radius: 1.5vh;
        font-size: .8em;
        color: #275f94;
        display: none;
    }

    .login_logout:hover {
        text-shadow: none;
    }

    #admin {
        width: 47%;
        font-size: .8em;
        display: none;
    }

    #google_search {
        top: auto;
        bottom: 5vh;
        left: 50%;
        right: auto;
        transform: translateX(-50%)
    }
}

.update_password {
    position: fixed;
    z-index: 5;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    max-width: 90%;
    opacity: 0;
    pointer-events: none;
    transition: ease .3s;
}

.update_password .card {
    padding: 20em 0;
}

#logo-azul-update {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 5%;
}

#update_password_button {
    padding: .8em 3em;
    margin-bottom: 5%;
    margin-top: 3%;
    background-color: #2D73B4;
    border: none;
    border-radius: 4px;
    color: #fff;
    cursor: pointer;
    font-size: 16px;
    transition: ease .3s;
}

#update_password_button:hover {
    background-color: #27649e;
}


.unhide {
    transition: ease .5s;
    opacity: 1;
    pointer-events: inherit;
    z-index: 3;
}

footer {
    width: 100%;
    margin: 0px auto;
    position: fixed;
    bottom: 0;
    margin-bottom: 20px;
    justify-content: center;
    align-items: center;
}

#copy {
    text-align: center;
}

@media (max-width: 380px) {
    footer {
        display: none;
    }
}