#formPage h3 {
    font-size: 1.35rem;
}

#formPage form {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

#formPage label {
    margin-top: 0.5125rem;
}

#formPage input[type="text"],
#formPage input[type="email"] {
    font-size: 1rem;
    padding: 0.5rem;
    width: 100%;
}

#formPage .form-info-icon {
    top: -0.8125rem;
    right: -0.8125rem;
    background: white;
    color: var(--primary-color);
    border: 0.1rem solid black;
}

#formPage input[type="checkbox"] {
    margin-right: 0.33rem;
}

#formPage .form-buttons {
    margin-top: 1.2rem;
    display: flex;
    justify-content: space-between;
}

#formPage input {
    border: none;
    background-color: #EEE;
}

#formPage input::placeholder {
    color: #666;
}

#formPage span.required-info {
    padding-top: 0.5125rem;
    font-size: 0.8rem;
    color: white;
}

#formPage h2 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-top: 1.2rem;
}

#userForm a {
    font-weight: bold;
    color: white;
}

#userForm .flex img {
    flex-grow: 1;
    object-fit: contain;
}

.input-container {
    position: relative;
}

.input-container .input-icon {
    height: auto;
    width: 1.33rem;
    border-radius: 0;
    padding: 0 !important;
}

.input-container input {
    border-radius: 0.5rem;
}

.flex-img-sm img.input-icon {
    width: 1rem;
    margin-top: 0.5125rem;
    height: auto;
}

.input-container input:focus-visible {
    outline: none;
}

#formCardInfo {
    cursor: pointer;
}

#formPage hr {
    margin-bottom: 1.2rem;
}

#formPage .legal-info {
    font-size: 0.8rem;
    color: white;
}

@media (max-width: 991px) {
    #formPage h2 {
        margin-top: 1.2rem;
    }
}