body {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    background: #fff;
    color: #222;
}
.main-wrapper {
    display: flex;
    min-height: 100vh;
}
.left-panel {
    flex: 1;
    background: #f6f6f6;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 40px;
}
.domain-info {
    text-align: center;
    margin-bottom: 60px;
}
.domain-name {
    color: #19c15a;
    font-size: 2.5rem;
    font-weight: 700;
}
.domain-info h2 {
    font-size: 1.5rem;
    font-weight: 400;
    margin: 10px 0 20px 0;
    color: #222;
}
.domain-info p {
    color: #444;
    font-size: 1.1rem;
}
.contact-mail {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 40px;
}
.mail-icon {
    font-size: 2rem;
    color: #19c15a;
    margin-bottom: 8px;
}
.contact-mail a {
    color: #19c15a;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
}
.right-panel {
    flex: 1;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 40px;
}
.contact-form {
    width: 100%;
    max-width: 420px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(25,193,90,0.07);
    padding: 40px 32px 32px 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.contact-form h3 {
    color: #19c15a;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    text-align: left;
}
.contact-form input,
.contact-form textarea {
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    padding: 12px 14px;
    font-size: 1rem;
    outline: none;
    transition: border 0.2s;
    background: #fafafa;
}
.contact-form input:focus,
.contact-form textarea:focus {
    border: 1.5px solid #19c15a;
    background: #fff;
}
.contact-form select {
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    padding: 12px 14px;
    font-size: 1rem;
    outline: none;
    background: #fafafa;
    margin-bottom: 8px;
    transition: border 0.2s;
    width: 100%;
    height: 48px;
    color: #222;
    box-sizing: border-box;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    display: block;
}
.contact-form select:focus {
    border: 1.5px solid #19c15a;
    background: #fff;
}
.contact-form select option[value=""] {
    color: #aaa;
}
.contact-form select.placeholder {
    color: #aaa !important;
}
.contact-form select:not(.placeholder) {
    color: #222;
}
.form-row {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.form-row input {
    flex: 1 1 0;
    min-width: 0;
}
.contact-form textarea {
    resize: vertical;
    min-height: 80px;
    max-height: 200px;
}
.contact-form button[type="submit"] {
    background: #19c15a;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 14px 0;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 8px;
    transition: background 0.2s;
}
.contact-form button[type="submit"]:hover {
    background: #13a94a;
}
@media (max-width: 900px) {
    .main-wrapper {
        flex-direction: column;
    }
    .left-panel, .right-panel {
        padding: 40px 10px;
    }
    .contact-form {
        padding: 32px 10px;
    }
    .form-row {
        flex-direction: column;
        gap: 10px;
    }
} 