/**
 * Public-facing styles for Rasekh Gateway
 */

.rasekh-gateway-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.rasekh-gateway-form {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.rasekh-gateway-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.rasekh-gateway-form input[type="text"],
.rasekh-gateway-form input[type="email"],
.rasekh-gateway-form select {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.rasekh-gateway-form button {
    background: #007cba;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

.rasekh-gateway-form button:hover {
    background: #005a87;
}

.rasekh-gateway-error {
    color: #d63638;
    padding: 10px;
    background: #fee;
    border-left: 4px solid #d63638;
    margin-bottom: 20px;
}

.rasekh-gateway-success {
    color: #008a20;
    padding: 10px;
    background: #efe;
    border-left: 4px solid #008a20;
    margin-bottom: 20px;
}

/* RTL Support for Arabic */
.rtl .rasekh-gateway-form {
    direction: rtl;
    text-align: right;
}

.rtl .rasekh-gateway-form input,
.rtl .rasekh-gateway-form select {
    text-align: right;
}