.container-body-login {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #0C213A;
}

.container-login {
    display: flex;
    width: 80%;
    max-width: 1200px;
    box-shadow: 0 4px 8px rgba(0.1, 0.1, 0.1, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.login-container {
    flex: 1;
    padding: 40px;
    background-color: #0C213A;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.login-container h2 {
    color: #ffff;
    margin-bottom: 20px;
}

.login-container img {
    width: 100px;
    margin-bottom: 20px;
}

.login-container p {
    color: #999999;
    margin-bottom: 30px;
}

.form-group {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.form-group-login {
    color: #fff;
}

.login-container input {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #cccccc;
    border-radius: 5px;
    font-size: 16px;
}
.btn-block{
    width: 100% !important;
    padding: 15px !important;
    background-color: #0C213A !important; 
    color: #fff !important;
    border: 2px solid #fff !important;
    border-radius: 5px !important;
    font-size: 16px !important;
    cursor: pointer !important;
    margin-bottom: 20px !important;
}

.btn-block:hover{
    background-color: #fff !important;
    color: #0C213A !important; 
    border: 2px solid #0C213A !important; 
}

.btn-entrar {
    width: 100%;
    padding: 15px;
    background-color: #fff;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    margin-bottom: 20px;
}

.btn-entrar:hover {
    background-color: #fff;
    
}

.btn-cadastrar {
    color: #fff;
}

.login-container .forgot-password {
    color: #fff;
    text-decoration: none;
}

.login-container .forgot-password:hover {
    text-decoration: underline;
    color: #fff;
}

.image-container {
    flex: 1;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}