.ors-form-container {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    font-family: Arial, sans-serif;
}
.ors-logo {
    text-align: center;
    margin-bottom: 20px;
}
.ors-logo img {
    max-height: 80px;
    width: auto;
}
.ors-field {
    margin-bottom: 15px;
}
.ors-field label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
}
.ors-field input, .ors-field select, .ors-field textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}
.ors-field textarea {
    min-height: 100px;
}
button[type="submit"] {
    background: #007cba;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}
button[type="submit"]:hover {
    background: #005a87;
}
.ors-success {
    background: #d4edda;
    color: #155724;
    padding: 10px;
    border-radius: 4px;
    margin-top: 15px;
    text-align: center;
}