*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
a{
    color: #5B913B;
}
a:hover{
    color: #141514;
    text-decoration: none;
}
.form-control:focus{
    box-shadow: 0px 0px 7px 2px #5B913B;
}
button{
    width: 100%;
    padding: 8px;
    border: none;
    background-color: #5B913B;
    color: #fff;
    border-radius: 20px;
}
input[type=checkbox]:checked {
    background-color: #a77e2d;
    color: #d73838;
  }
.container-fluid{
    height: 100vh;
    display: flex;
    align-items: center;
}

.container {
    height: auto;
    background-color: #ffffff;
    border-radius: 20px;
    box-shadow: 5px 5px 5px 5px rgba(0, 0, 0, 0.368);
}

.login-form {
    padding: 50px;
}

.login-image {
    width: 100%;
    height: 90vh;
    border-radius: 20px;
    object-fit: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}