.cs-container {
    display: flex;
    max-width: 1000px;
    margin: 40px auto;
    border: 2px solid #ccc; 
    border-radius: 15px; 
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    gap: 20px;
}

.cs-form {
    flex: 1;
    padding: 30px;
    background: #fff;
    font-family: Arial, sans-serif;
}

.cs-info {
    flex: 1;
    padding: 30px;
    background: #f9f9f9;
}

.cs-title {
    text-align: center;
    font-size: 26px;
    margin-bottom: 30px;
    font-weight: 700;
}

.cs-field {
    margin-bottom: 18px;
}

.cs-field label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 14px;
}

.cs-field input,
.cs-field textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
}

.cs-field input:focus,
.cs-field textarea:focus {
    outline: none;
    border-color: #0073aa;
}

.cs-kvkk {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0;
    font-size: 13px;
}

.cs-kvkk input {
    width: 16px;
    height: 16px;
}

.cs-submit {
    width: 100%;
    padding: 12px;
    background: #d32f2f;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

.cs-submit:hover {
    background: #b71c1c;
}