.legalPage {
    flex: 1;
    padding: 20px 0 30px;
}

.legalContent {
    background: #e5ddf0;
    border: 1px solid rgb(192, 157, 186);
    border-radius: 4px;
    padding: 20px 24px;
}

.legalContent h1 {
    font-size: 18px;
    font-weight: bold;
    color: #3a2a4a;
    margin-bottom: 6px;
}

.legalContent .legalDate {
    font-size: 11px;
    color: #999;
    margin-bottom: 18px;
}

.legalContent h2 {
    font-size: 14px;
    font-weight: bold;
    color: #7a4a8a;
    margin: 18px 0 6px;
}

.legalContent p {
    font-size: 12px;
    color: #444;
    line-height: 1.7;
    margin-bottom: 8px;
}

.legalContent ul {
    padding-left: 16px;
    margin-bottom: 8px;
}

.legalContent ul li {
    list-style: disc;
    font-size: 12px;
    color: #444;
    line-height: 1.7;
}

.legalContent a {
    color: #51b4c6;
    text-decoration: underline;
}

.contactForm {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 14px;
}

.contactForm input,
.contactForm textarea {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #c19dbb;
    border-radius: 4px;
    font-size: 12px;
    background: #fff;
    color: #333;
    outline: none;
    font-family: inherit;
}

.contactForm textarea {
    height: 100px;
    resize: vertical;
}

.contactForm input:focus,
.contactForm textarea:focus {
    border-color: #7a4a8a;
}

.contactSubmit {
    align-self: flex-start;
    padding: 7px 20px;
    background: url(../images/title_purple.png) repeat-x;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    border: none;
    transition: opacity 0.2s;
}

.contactSubmit:hover {
    opacity: 0.85;
}
