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

.div-login
{
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 400px;
    height: 500px;
    background: linear-gradient(0deg, rgba(39,39,42,1) 0%, rgba(136,136,136,1) 35%, rgba(237,237,237,1) 100%);
    padding: 3rem 2rem 3rem 2rem;
    border-radius: 2rem;
    box-sizing: border-box;
    gap: 0.5rem;
    margin-left: 50px;
    margin-right: 50px;
    text-align: center;
    align-items: center;
}

.input 
{
    width: 100%;
    padding: 12px;
    border-radius: 12px;
    font-size: 1.2rem;
    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;
    height: 60px;
}
  
.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: #1f92c8;
    color: white;
    cursor: pointer;
    font-size: 1rem;
    height: 60px;
}

.logo-dna
{
    width: 50%;
}

.texto-conta
{
    color: white;
    margin-top: 1rem;
}

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

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

.popup-content 
{
    background: #5f5f5f;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    color: #fff;
    max-width: 400px;
    width: 90%;
    position: relative; 
}

.popup-content input 
{
    width: 80%;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    border: 1px solid #ccc;
    text-align: center;
}

.popup-content button 
{
    padding: 10px 20px;
    background: #1f92c8;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    color: #fff;
    font-weight: bold;
}

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

.close-popup 
{
    cursor: pointer;
    color: #fff;
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 18px;
}