/* Arhondaric OASA public form styles */
.arhondaric-form {
    max-width: 500px;
    margin: 30px auto;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    padding: 30px 40px;
    font-family: 'Segoe UI', Arial, sans-serif;
}
.arhondaric-form h2 {
    text-align: center;
    margin-bottom: 25px;
    color: #2c3e50;
}
.arhondaric-form label {
    display: block;
    margin-bottom: 12px;
    color: #34495e;
    font-weight: 500;
}
.arhondaric-form input,
.arhondaric-form select {
    width: 100%;
    padding: 8px 10px;
    margin-top: 4px;
    margin-bottom: 18px;
    border: 1px solid #bdc3c7;
    border-radius: 5px;
    font-size: 16px;
    background: #f8f8f8;
    box-sizing: border-box;
}
.arhondaric-form input[type="submit"] {
    background: #2980b9;
    color: #fff;
    border: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: 5px;
    padding: 12px;
    cursor: pointer;
    transition: background 0.2s;
}
.arhondaric-form input[type="submit"]:hover {
    background: #3498db;
}
