body 
{
    background: linear-gradient(to right, rgb(255, 255, 255), rgb(30, 144, 255));
}
#login-box 
{
    margin: 50px auto;
    width: 980px;
    padding: 85px;
    border-width: 2px 4px;
    border-radius: 20px;
    background-color: #ffffff;
    box-shadow: 0 0 10px #2ca8e2;
    text-align: center;
    display: grid;
    grid-template-columns: 1fr auto 1fr; 
    gap: 20px;
    align-items: center;
    position: relative; 
}
#login-box::before 
{
    content: "";
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    height: 80%;
    width: 2px;
    background-color: #2588df;
    z-index: 1;
}
#login-box img 
{
    width: 500px;
    height: auto;
    margin-left: -80px;
}
#login-box hr 
{
    width: 65%;
    border: 1px solid #2588df; 
    margin-bottom: 30px; 
}
#login-box form 
{
    display: flex;
    flex-direction: column;
    grid-column: 3 / 4; 
}
#login-box input[type="text"],
#login-box input[type="password"] 
{
    margin: auto;
    width: 65%;
    margin-bottom: 10px;
    padding: 10px;
    border: none;
    border: 2px solid #2588df; 
    border-radius: 8px; 
    background-color: #F4F7FA;
    position: relative;
    outline: none;
    z-index: 1;
}
.labelemail,
.labelsenha
{
    margin-left: -200px;
    position: relative;
    top: 15px;
    color: #2588df; 
    margin-bottom: 5px;
    font-weight: bold;
    font-size: 18px;
    z-index: 5;
}
#login-box input[type="submit"] 
{
    width: 40%;
    margin-left: 140px;
    height: 40px;
    border-radius: 10px;
    background-color: #73b0e6;
    color: #ffffff;
    font-size: 16px;
    cursor: pointer;
}
.image-container 
{
    position: absolute;
    top: 10px;
    right: 5px;
    display: flex;
    flex-direction: column;
}
.image-container:hover .ad-image
{
    display: block;
}
.ad-image
{
    display: none;
    top: 150px;
    width: 110px;
    height: 125px;
    border: 1px solid #ccc;
}
.ad-image a 
{
    position: relative;
}
.ad-image a span 
{
    position: absolute;
    margin-top: 8px;
    margin-left: -7px;
    font-size: 14px;
    font-weight: bold;
    color: #000000; 
    cursor: default;
}
#recover-box 
{
    display: none;
    margin-left: 100px;
}
#recover-box input[type="text"] 
{
    width: 100%;
    margin-bottom: 10px;
    padding: 10px;
    border: none;
}
#recover-box input[type="submit"] 
{
    width: 50%;
    height: 40px;
    margin-left: 50px;
    border-radius: 10px;
    background-color: #73b0e6;
    color: #ffffff;
    font-size: 16px;
    cursor: pointer;
}
.image-background 
{
    background-color: #ffffff;
    border-radius: 50%; 
}
.icon7 
{
    display: none;
}
@media screen and (max-width: 988px){
    #login-box{
        width: 60%;
        height: 380px;
    }
    #login-box img{
        width: 300px;
        height: auto;
    }
}
@media screen and (max-height: 540px){
    #login-box
    {
        width: 70%;
        height: 280px;
    }
}