* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;    
}

body {
    font-family: Arial, Helvetica, sans-serif;
    width: 100%;
    height: 100vh;

    background: #f2f2f2;

    display: flex;
    align-items: center;
    justify-content: center;
} 

.card {
    width: 800px;
    height: 500px;
    background: #fff;
    box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.25);
    border-radius: 4px;
    padding: 20px 45px;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section_login {
    width: 45%;
}

.section_login h1{
    font-size: 25px;
    font-weight: 600;
    line-height: 100.7%;
    margin-bottom: 10px;
    color: #546472;
}

.section_login h4{
    font-size: 17.2px;
    font-weight: 500;
    line-height: 100.7%;
    margin-bottom: 25px;
    color: #546472;
}

.section_login .description {
    font-size: 15px;
    line-height: 100.7%;
    color: #546472;
    margin-bottom: 25px;
}

.input_group {
    margin-top: 15px;
}

.form .input_group label {
    font-size: 15px;
    line-height: 100.7%;
    color: #546472;
    display: block;
    margin-bottom: 2px;
}

.form .input_group input {
    background: #d6d6d6;
    border: none;
    height: 30px;
    width: 100%;
    border-radius: 5px;
    padding: 0% 10px;
    font-size: 15px;
    color: #546472;
    outline: none;
    font-family: Arial, Helvetica, sans-serif;
    transition: all 0.3s ease;
}

.form .input_group input:focus{
    border-radius: 5px;
    border: 2px solid #bdd248;
}

/* .form .error-messages span {
    font-size: 15px;
    line-height: 100.7%;
    color: red;
    display: block;
    margin-bottom: 5px;
    margin-top: 5px;
} */

.check {
    margin-top: 10px;
}

.show_hide {
    display: inline;
    font-size: 15px;
}

.form .button_submit {
    height: 40px;
    width: 100%;
    background: #b2c11e;
    border-radius: 3px;
    color: #fff;
    border: none;
    outline: none;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 25px;
}

.form .button_submit:hover {
    opacity: 0.8;
}

.form .description_form {
    margin-top: 15px;
    font-size: 14px;
    color: #222;
}

.form .link_form {
    margin-top: 15px;
    font-size: 16px;
    color: #222;
}

.section_img {
    width: 50%;
    height: 48%;
    background: transparent;
    overflow: hidden;
}

.section_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media screen and (max-width: 850px) {
    .card {
      width: 80%;
      height: auto;
      flex-direction: column;
      padding: 35px;
    }
  
    .section_login {
      width: 100%;
    }
  
    .section_img {
      display: none;
    }
  }

.messages {
    width: max-content;
    color:#546472;
    font-size: 14px;
    border-radius:8px;
    padding:5px 10px 5px; 
    margin-top: 10px;
}

.messages span {
    color: #c44a4a;
    font-weight:bold;
    text-transform:uppercase;
}

.error {
    background:#fdd7d7;
    border:1px solid #f5aca6;
}