body {
    margin: 0px !important;
    padding: 0px !important;
    font-family: sans-serif;
}

.container-fluid {
    margin: 0px !important;
    padding: 0px !important;
    display: flex;
}

/* BLOCK 1 STYLE */
.block-1 {
    background-color: #000000;
    height: 100vh;
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo {
    height: 120px;
}

/* BLOCK 2 STYLE */

.block-2 {
    height: 100vh;
    width: 50vw;
    display: flex;
    align-items: center;
    justify-content: center;
}

.div-form {
    width: 20vw;
    display: flex;
    align-items: center;
    justify-content: center;
}

form {
    width: 100%;
    text-align: center;
}

.form-title {
    margin-bottom: 20px;
}

.form-field {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

input[name="username"],
input[name="password"] {
    padding: 10px;
    width: 75%;
    border: none;
    border-bottom: solid 1px gray;
}

input[name="username"]:focus,
input[name="password"]:focus {
    outline: none;
    border-bottom: solid 2px #000000;
}

.form-remember {
    display: flex;
    font-size: 14px;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

input[type="checkbox"] {
    margin-right: 5px;
}

input[type="checkbox"]:hover {
    cursor: pointer;
}

input[type="submit"] {
    padding: 10px;
    width: 75%;
    border: none;
    background-color: #000000;
    color: #FFFFFF;
}

input[type="submit"]:hover {
    cursor: pointer;
    background-color: #F1B51C;
}

.form-forgot {
    margin-top: 5px;
    font-size: 14px;
}

.form-forgot a {
  text-decoration: none;
  color: #000;
}

.form-forgot a:hover {
  font-weight: bold;
}