/* START LOGIN */
.login-section {
    display: flex;
    justify-content: center;
    align-items: center;

    max-width: 1300px;
    padding-left: 50px;
    padding-right: 50px;
    margin: auto;
}

/* Box login */
.login-section .box-login {
    max-width: 450px;
    min-width: 40%;
    margin-bottom: 30px;
    margin-top: 30px;
}

/* Form */
.form {

}

/* Recover pwd */
.form .recovery-pwd {
    margin-top: 15px;
}
.form .recovery-pwd a {
    text-decoration: none;
}

/* Input field */
.form .input-field {
    display: flex;
    flex-direction: column;
    padding: 15px 0 0 0;
    color: #1C242B;
}
.form .input-field input {
    padding: 0 12px;
    width: 100%;
    display: block;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    outline: 0;
    cursor: text;
    font-size: 15px;
    height: 40px;
    border: 1px solid #ddd;
    background-color: #FFFFFF;
    color: #666;
}
.form .input-field label {
    font-size: 15px;
    line-height: 22px;
    font-weight: 600;
    color: #555;
    margin: 0 0 8px 0;
}

/* Form placeholder */
.form input::placeholder {
    color: transparent;
}

/* Button */
.form-button-row {
    margin-top: 25px;
    margin-bottom: 5px;
    text-align: center;
}

.form-submit-button {
    box-sizing: border-box;
    height: auto;
    font-size: 15px;
    cursor: pointer;
    width: fit-content;
    outline: 0;
    background: #3ba1da;
    min-width: 250px;
    line-height: 1em;
    padding: 16px 20px;
    text-align: center;
    font-weight: 400;
    transition: .25s;
    border: none;
    color: #FFFFFF;
    border-radius: 4px;
}

/* END LOGIN */


/* START MEDIA QUERY */
/* Tablet */
@media (max-width: 767px) {

}
/* Mobile */
@media (max-width: 576px) {
    .login-section {
        padding-left: 20px;
        padding-right: 20px;
    }
}
/* END MEDIA QUERY */