.ltn__section-title-2 p {
    max-width: 100%;
}

.input-item-phone {
    position: relative;
}

.input-item-phone input[type="tel"] {
    background-color: var(--white);
    border: 2px solid;
    border-color: var(--border-color-9);
    height: 3.4em;
    box-shadow: none;
    padding-left: 20px;
    font-size: 14px;
    font-weight: 400;
    color: var(--ltn__paragraph-color);
    width: 100%;
    margin-bottom: 0;
    border-radius: 15px;
    padding-right: 40px;
}

.input-item-phone input[type="tel"]::-webkit-input-placeholder {
    color: var(--ltn__paragraph-color);
    font-size: 14px;
    font-weight: 400;
}

.input-item-phone input[type="tel"]::-moz-placeholder {
    color: var(--ltn__paragraph-color);
    font-size: 14px;
    font-weight: 400;
}

.input-item-phone input[type="tel"]:-ms-input-placeholder {
    color: var(--ltn__paragraph-color);
    font-size: 14px;
    font-weight: 400;
}

.input-item-phone input[type="tel"]:-moz-placeholder {
    color: var(--ltn__paragraph-color);
    font-size: 14px;
    font-weight: 400;
}

.input-item-phone input[type="tel"]:focus {
    border-color: var(--ltn__secondary-color);
}

/* Keep the phone icon vertically centered on the register form */
.register-page-section .input-item-phone.ltn__custom-icon::before {
    top: 50%;
}

/* Uniform spacing between inputs on the register page (mobile only) */
@media (max-width: 767.98px) {
    .register-page-section #registerForm .input-item {
        margin-bottom: 14px;
    }

    .register-page-section #registerForm .input-item:last-child {
        margin-bottom: 0;
    }

    .register-page-section #registerForm .input-item input {
        margin-bottom: 0;
    }

    /* Align input icons vertically on the register form (mobile only) */
    .register-page-section .input-item.ltn__custom-icon::before {
        top: 50%;
    }
}

/* Auth pages spacing to prevent navbar overlap */
.login-page-section,
.register-page-section {
    padding-top: 50px !important; /* override global reset in site.css */
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .login-page-section,
    .register-page-section {
        padding-top: 150px !important;
    }
}

@media (min-width: 992px) {
    .login-page-section,
    .register-page-section {
        padding-top: 150px !important;
    }
}
