body
{
    background-color: #f4f5f7;
}

/* Section 1 */


.sec_1
{
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo
{
    margin: 30px 20px 5px 20px;
}


.logo img
{
    width: 400px;
    

}

.login_card
{
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #ffffff;
    border-radius: 8px;

}



.login_card_title h3
{
    color: #1937ae;
    font-family: 'Roboto','sans-serif';
    font-weight: 500;
    font-size: 20px;
}

.login_card_title h3 span
{
    color: #111111;
}


.form-group
{
    margin-top: 30px;
}

.form-group input
{
    width: 350px;
}

.sign_in_btn
{
    margin: 20px 0 30px 0;
}


.logout-btn {
    font-family: 'Roboto','sans-serif';
    font-weight: 500;
    background: #d3d3d3;
    color: #2c2c2c;
    cursor: pointer;
    font-size: 20px;
    padding: 10px 15px;
    border: 0;
    transition: all 0.5s;
    border-radius: 10px;
    width: auto;
    position: relative;
    min-width: 250px;
  }
  .logout-btn::after {
    content: "";
    font-family: "Font Awesome 5 Pro";
    font-weight: 400;
    position: absolute;
    left: 80%;
    top: 54%;
    right: 0;
    bottom: 0;
    opacity: 0;
    transform: translate(-50%, -50%);
  }
  .logout-btn:hover {
    background: #2b2bff;
    transition: all 0.5s;
    border-radius: 10px;
    box-shadow: 0px 6px 15px #0000ff61;
    padding: 15px 20px;
    color: #ffffff;
  }
  .logout-btn:hover::after {
    opacity: 1;
    transition: all 0.5s;
    color: #ffffff;
  }