body {
    background: #FFF4D8;
    margin: 0;
    font-family: 'Noto Sans', sans-serif;
    font-weight: 600;
}
* {
    box-sizing: border-box;
    font-family: 'Noto Sans', sans-serif;
}
.login-container,.register-container {
    display: flex;
    height: 100vh;
    align-items: center;
    padding: 30px;

}

.left-column {
    height: 100%;
    width: 50%;
    background: url(/themes/tractores/assets/img/login.jpg);
    background-size: cover;
    background-position: center center;
    border-radius: 0 0 0 40px;
}

.right-column {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50%;
}

.right-column h3 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 25px;
}

.login-container .right-column .col-md-6:last-child {
    display: none;
}
.register-container .right-column .col-md-6:first-child {
    display: none;
}




label {
    display: block;
    font-size: 14px;
}
input {
    height: 40px;
    width: 100%;
    min-width: 400px;
    border: none;
    border-radius: 10px;
    padding: 10px;
    margin-top: 10px;
    margin-bottom: 20px;
}

button {
    background: #F8CD3D;
    border: none;
    box-shadow: none;
    padding: 18px 30px;
    border-radius: 120px;
    font-size: 16px;
    font-weight: bold;
    margin-top: 20px;
    cursor: pointer;
}

button:hover {
    background: #eacf75;
}
form {
    margin-bottom: 30px;

}

a {
    color: black;
    font-weight: 900;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}