.page-content {
    display: flex;
    flex-direction: column;
    max-width: 60rem;
}

.contact-form-row > label {
    font-size: 1.1rem;
    font-weight: 600;
}

.contact-form-row > input, .contact-form-row > textarea {
    width: 100%;
    padding: .8rem 1.2rem;
    border: 1px solid #ccc;
    border-radius: 0.5rem;
    font-size: .9rem;
    margin-top: 0.2rem;
}

.phone-container {
    display: flex;
    align-items: center;
    justify-content: start;
    margin-top: 0.2rem;
    gap: 0.5rem;
}

.phone-container > input {
    padding: .5rem 1.2rem;
    border: 1px solid #ccc;
    border-radius: 0.5rem;
    width: 5rem;
    font-size: .9rem;
}

.contact-form-row > textarea {
    height: 10rem;
}

#agreement {
    height: 15rem;
}

.contact-form-row {
    margin-top: 1rem;
}

.contact-form-row > label.required::after {
    content: " *";
    color: red;
}

.agreement-check-container {
    display: flex;
    align-items: center;
    justify-content: start;
}

.agreement-check-container > input {
    margin-right: .5rem;
    width: auto;
}

.submit-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
}

.submit-container > button {
    padding: .7rem 1.2rem;
    width: 100%;
    border-radius: 0.5rem;
    background-color: var(--point-color);
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: 600;
}

.submit-container > button:hover {
    background-color: #003f88;
}