/* geral */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Helvetica;
    color: #323232;
    border: none;
}

body {
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.7)),
        url("../img/fundo-login.webp") no-repeat;
    background-size: cover;
    height: 100vh;
    overflow: hidden;
}

textarea:focus,
input:focus {
    outline: none;
}

a {
    font-size: 0.8rem;
}

a:hover {
    color: #08558b;
}

/* container login */
#login-container {
    background-color: #fff;

    max-width: 400px;
    padding: 20px 30px;
    margin: 100px auto;
    border-radius: 10px;
    text-align: center;
}

/* formulário */
form {
    margin-top: 30px;
    margin-bottom: 40px;
}
.logo {
    width: 100px;
}

label,
.inputTextos {
    display: block;
    width: 100%;
    text-align: left;
}

label {
    font-weight: bold;
    font-size: 0.8rem;
}

input {
    border-bottom: 2px solid #323232;
    padding: 10px;
    font-size: 1rem;
    margin-bottom: 20px;
}

input:focus {
    border-bottom: 2px solid #08558b;
}
input::placeholder {
    font-style: italic;
    font-size: 14px;
    color: #bfbfbf;
}

#forgot-pass {
    display: block;
    text-align: right;
}

input[type="submit"] {
    text-align: center;
    text-transform: uppercase;
    border: none;
    height: 40px;
    border-radius: 20px;
    margin-top: 30px;
    cursor: pointer;
    color: #fff;
    background-color: #08558b;
    font-weight: bold;
}

input[type="submit"]:hover {
    background-color: #1b223c;
    transition: 0.5s;
}
.btn-login {
    display: inline-block;
    border-radius: 4px;
    background-color: #361272;
    border: none;
    color: #ffffff;
    text-align: center;
    font-size: 17px;
    padding: 10px;
    width: 130px;
    transition: all 0.5s;
    cursor: pointer;
    margin: 5px;
}

.btn-login span {
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.5s;
    color: #fff;
}

.btn-login span:after {
    content: "»";
    position: absolute;
    opacity: 0;
    top: 0;
    right: -15px;
    transition: 0.5s;
}

.btn-login:hover span {
    padding-right: 15px;
}

.btn-login:hover span:after {
    opacity: 1;
    right: 0;
}

/* registrar */
#register-container p {
    margin-bottom: 10px;
}

.return-home {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.btn-link {
    color: #5f6163;
}
@media only screen and (max-width: 600px) {
    #login-container {
        margin: 50px 20px;
    }
}
