@import url('https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,100..900;1,100..900&display=swap');

body {
    /* Alinhamentos */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    /* Fonte */
    font-family: "Exo 2", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

/* IMAGEM TRANSPARENTE */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image: url('../_img/logo_campos_gerais_2048.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0.08;
    z-index: -1;
}

.login-box {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, .1);
    width: 320px;
}

.login-box h2 {
    font-size: 15pt;
}

.input-group {
    position: relative;
    margin: 15px 0;
}

.input-group input {
    width: 100%;
    padding: 14px 10px;
    box-sizing: border-box;
    border: 1px solid rgba(0, 0, 0, 0.18);
    border-radius: 5px;
    outline: none;
    background: transparent;
    font-size: 14px;
    transition: 0.2s;
}

.input-group label {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    padding: 0 5px;
    color: #777;
    font-size: 14px;
    pointer-events: none;
    transition: 0.2s;
}

.input-group input:focus {
    border-color: #2f3640;
}

.input-group input:focus + label,
.input-group input:not(:placeholder-shown) + label {
    top: 0;
    font-size: 11px;
    color: #2f3640;
}

button {
    width: 100%;
    margin: 10px 0;
    padding: 12px;
    background: #2f3640;
    color: #fff;
    border: none;
    cursor: pointer;
}

.login-link {
    text-align: center;
    font-size: 12pt;
    margin-top: 10px;
    color: #555;
}

.login-link a {
    color: #2f3640;
    text-decoration: none;
    font-weight: 600;
}

.login-link a:hover {
    text-decoration: underline;
}