@charset "UTF-8";


* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

body {
    background-color: #5214cd;
    margin: auto;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

header {
    left: 0;
    top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    padding: 10px;
    padding-bottom: 55px;
    margin-top: 10px;
    margin-right: 20px;
    width: 100%;
}

header #logo a {
    user-select: none;
    color: white;
    text-decoration: none;
    font-size: 1.2em;
    padding: 5px;
    user-select: none;
    margin-left: 25px;
}

#menu ul {
    list-style: none;
}

#menu a {
    position: relative;
    color: white;
    text-decoration: none;
    padding: 2px;
    margin-right: 15px;
    font-size: 1em;
    font-weight: 500;
    transition: all 0.5s;
}

#menu a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background-color: white;
    border-radius: 5px;
    transform: scaleX(0);
    transition: transform .5s;
}

#menu a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

div h1 {
    text-align: center;
    margin-top: -18px;
    margin-bottom: 5px;
}

div p {
    text-align: center;
    font-size: 17.7px;
    margin: 5px 10px 14px 10px;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    margin-top: -2px;
}

div .box {
    position: relative;
    width: 85%;
    height: 45px;
    margin: 0px 0;
    margin-top: 10px;
}

.box input {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #cac6d142;
    border-radius: 15px;
    border: 1px solid black;
    font-size: 15px;
    padding: 0 50px;
    outline: none;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.11);
    transition: all 0.3s;
}

.box input:hover {
    box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.226);
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.116);
    transform: translateY(-3px);
    transition: all 0.7s;
}

.box input:focus {
    border-color: #5214cdec;
    transition: all 0.3s;
}
    
.box input::placeholder {
    color: rgba(0, 0, 0, 0.377);
}

.box img {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.7;
}

.imagem-login {
    margin-bottom: 20px;
}

.imagem-login img {
    border-radius: 20px 20px 0px 0px;
    width: 348px;
    height: 260px;
}

section {
    background-color: white;
    width: 348px;
    height: 689px;
    border-radius: 25px;
    margin: 0 auto;
    margin-top: 80px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.527);
    transition: 0.4s ease-out;
    align-items: center;
}

.redes {
    display: flex;
    justify-content: center;
    text-align: center;
    margin-top: 19px;
    margin-bottom: 7px;
    margin-left: 8px;
    gap: 10px;
    opacity: 0.7;
}

.redes a img {
    transition: all 0.5s;
    border-radius: 15%;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0);
}

.redes a img:hover {
    transform: translateY(-3px);
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.39);
}

.entrar button, .esqueci-senha button {
    width: 220px;
    height: 36px;
    border-radius: 10px;
    border: 2px solid black;
    color: white;
    background-color: #3d0aa3;
    transition: all 0.5s;
    margin-top: 5px;
    margin-left:7px;
    cursor: pointer;
}

.entrar button:hover, .esqueci-senha button:hover {
    background-color: #110033;
    transform: translateY(-2px);
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.534);
}