/* REMOVE ESPAÇAMENTOS GERAIS */
html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden; /* remove scroll */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* FUNDO PAPEL ENVELHECIDO */
.login-page {
    height: 100vh;
    width: 100vw;

    display: flex;
    justify-content: center;
    align-items: center;

    background: url("../images/papel.jpg") no-repeat center center;
    background-size: cover;
}

/* CONTAINER CENTRAL */
.login-container {
    text-align: center;
}

/* LOGO */
.logo {
    width: 260px;
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.6));
}

/* FORM */
.login-form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* INPUTS */
.login-form input {
    width: 260px;
    padding: 12px;
    margin-top: 15px;
    border: none;
    background: rgba(255, 250, 235, 0.3);
    font-size: 16px;
    text-align: center;
}

input:focus {
  outline: none; /* Removes the default browser focus outline */
}

.login-form input:focus {
    box-shadow: 0 0px 9px rgba(0,0,0,0.3);
}

/* BOTÃO DOURADO */
.btn-login {
    width: 260px;
    padding: 12px;
    margin-top: 20px;
    background: rgba(255, 250, 235, 0.3);
    border: none;
    border-radius: 6px;
    color: black;
    font-weight: bold;
    letter-spacing: 1px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-login:hover {
    box-shadow: 0 0px 9px rgba(0,0,0,0.3);
}