.header {
    padding: 2.125rem 6.25rem 0.875rem;
}
.header .logo-header {
    max-width: 6rem;
    height: auto;
    display: block;
}
.section-login {
    margin: 2rem 12rem 0;
}

.login-form {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-header {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-header h1 {
    font-weight: 800;
    font-size: 2rem;
    line-height: 2.5rem;
    margin: 0;
}
.form-header p {
    color: #273144;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.25rem;
    margin: 0;
}

.form-header p a {
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.25rem;
    text-decoration: underline;
}

.another-login {
    display: flex;
    flex-direction: column;
}

.another-login .section-option {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.another-login .section-option .btn-login-custom {
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.25rem;
    border: 0.0625rem solid #dbe0eb;
    cursor: pointer;
    border-radius: 0.25rem;
    text-decoration: none;
    text-align: center;
    padding: 0.625rem 1rem;
}

.another-login .section-option .btn-login-custom:hover {
    background: #f4f6fa;
    border: 0.0625rem solid #c3cbdc;
}

.another-login .section-option .btn-login-custom:first-child {
    margin-top: 0.5rem;
}

.another-login .section-option .btn-login-custom .btn-title {
    display: inline-flex;
    gap: 0.25rem;
    vertical-align: top;
    align-items: center;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.25rem;
    color: var(--bs-text-color-black-1);
}

.another-login .break {
    text-transform: uppercase;
    display: grid;
    grid-template-columns: 1fr 0fr 1fr;
    gap: 1rem;
    color: #3a4863;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.25rem;
}

.another-login .break::after,
.another-login .break::before {
    content: '';
    height: 0.0625rem;
    width: 100%;
    background: #dbe0eb;
    margin: auto 0;
}

.form-content input {
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.25rem;
    color: rgb(39, 49, 68);
    display: block;
    box-sizing: border-box;
    width: 100%;
    padding: 0.625rem 0.75rem;
    border-radius: 0.25rem;
    border: 0.0625rem solid #dbe0eb;
    margin: 0px 0px 0.5rem;
}

.input-title {
    margin: 0 0 0.5rem 0;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.25rem;
    color: #273144;
}

.btn-submit {
    background-color: var(--bs-color-btn-primary);
    color: #ffffff;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.25rem;
    padding: 0.625rem 1rem;
    border-radius: 0.25rem;
    border: none;
    cursor: pointer;
    width: 100%;
    margin-top: 2rem;
}

.form-term {
    margin: 0;
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 1.125rem;
    color: #3a4863;
}

.btn-submit:hover {
    background-color: #0c3ebb;
    color: #ffffff;
}

.background {
    background-color: var(--bs-background-color-1);
    padding: 11rem 2.5rem 4rem;
}

.background-image {
    width: 100%;
}

.background-title {
    font-size: 2rem;
    line-height: 2.5rem;
    margin-top: 2.5rem;
    text-align: center;
}

@media (max-width: 1440px) {
    .section-login {
        margin: 2rem 8rem 0;
    }
}

@media (max-width: 1200px) {
    .section-login {
        margin: 2rem 4rem 0;
    }

    .login-form {
        padding: 0.5rem;
    }
}

@media (max-width: 992px) {
    .section-login {
        margin: 5rem 7rem auto;
    }
}

@media (max-width: 576px) {
    .header {
        padding: 2.25rem 1rem;
    }

    .section-login {
        margin: unset;
    }
}
