body
{
    height: 100vh;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 50%;
    margin: 0;
    display: flex;
    align-items: center;
}

.div-login
{
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 450px;
    height: 100%;
    background: #EFEFEF;
    padding: 3rem 2rem 3rem 2rem;
    box-sizing: border-box;
    gap: 0.5rem;
    text-align: center;
    align-items: center;
}

.img_login {
    background-image: linear-gradient(rgba(29, 29, 29, 0.2), rgba(29, 29, 29, 0.2)), url(../img/fundo-login.jpg);
    height: 100vh;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 50%;
    margin: 0;
    display: flex;
    align-items: center;
}

.input 
{
    width: 100%;
    padding: 12px;
    border-radius: 12px;
    border: 1px solid #d1d1d1;
    font-size: 1rem;
    outline: none;
    transition: 0.2s;
    box-sizing: border-box;
    box-shadow: 0px 0px 20px -18px;
}

input:focus {
    border-color: #b69c52;
}
  
.btn-login 
{
    width: 100%;
    padding: 12px;
    border-radius: 12px;
    border: none;
    outline: none;
    transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: 0px 0px 20px -18px;
    box-sizing: border-box;
    background-color: #b69c52;
    color: white;
    cursor: pointer;
    font-size: 1rem;
    height: 48px;
    font-weight: 500;
}

.btn-login:hover {
    background: #a08845;
}

.logo-cir
{
    width: 50%;
    margin-bottom: 1rem;
    min-width: 120px;
}

.texto-conta
{
    color: #3E3A39;
    margin-top: 0.5rem;
}

.link-redefinir
{
    color: #b69c52;
    text-decoration: none;
}

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(4px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

/* caixa central */
.popup-content {
    background: #EFEFEF;
    padding: 2rem 1.8rem;
    border-radius: 16px;
    text-align: center;
    color: #3E3A39;
    max-width: 420px;
    width: 90%;
    position: relative;
    box-shadow: 0 10px 35px rgba(0,0,0,0.15);
    animation: fadeIn 0.25s ease-out;
}

/* título */
.popup-content h2:first-of-type {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 800;
    color: #3E3A39;
}

/* subtítulo */
.popup-content h2:nth-of-type(2) {
    margin-top: 0.4rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: #6a6a6a;
}

/* input */
.popup-content input {
    width: 100%;
    padding: 12px;
    border-radius: 12px;
    border: 1px solid #d1d1d1;
    font-size: 1rem;
    outline: none;
    transition: 0.2s;
    box-sizing: border-box;
}

.popup-content input:focus {
    border-color: #b69c52;
}

.popup-content button {
    padding: 12px;
    width: 100%;
    background: #b69c52;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    color: #fff;
    font-weight: 500;
    margin-top: 0.7rem;
    font-size: 1rem;
    transition: 0.2s;
}

.popup-content button:hover {
    background: #a08845;
}

.close-popup {
    cursor: pointer;
    color: #3E3A39;
    position: absolute;
    top: 10px;
    right: 12px;
    font-size: 20px;
    transition: 0.2s;
}

.close-popup:hover {
    color: #b69c52;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media(max-width: 450px){
    .div-login {
        width: 100%;min-width: auto;
    }

    .img_login {
        display: none;
    }
}