/* Rendelés Form Plugin CSS */

/* Form konténer */
.rd-form-container {
    max-width: 500px;
    margin: 50px auto;
    padding: 30px;
    border: 1px solid #e0e0e0;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    font-family: Arial, sans-serif;
}

/* Form cím */
.rd-form-container h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #333333;
    font-size: 1.8em;
}

/* Form mezők csoportosítása */
.rd-form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

/* Label stílus */
.rd-form-group label {
    margin-bottom: 8px;
    font-weight: bold;
    color: #555555;
    font-size: 1em;
}

/* Input mezők stílus */
.rd-form-group input[type="text"],
.rd-form-group input[type="email"] {
    padding: 12px 15px;
    border: 1px solid #cccccc;
    border-radius: 4px;
    font-size: 1em;
    transition: border-color 0.3s, box-shadow 0.3s;
}

/* Input fókusz állapot */
.rd-form-group input[type="text"]:focus,
.rd-form-group input[type="email"]:focus {
    border-color: #fcbe00;
    box-shadow: 0 0 5px #fcbe00;
    outline: none;
}

/* Submit gomb stílus */
.rd-form-submit {
    text-align: center;
}

.rd-form-submit button[type="submit"] {
    padding: 12px 25px;
    border: none;
    border-radius: 4px;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.rd-form-submit button[type="submit"]:hover {
    transform: translateY(-2px);
}

/* Hibaüzenet stílus */
.rd-form-error {
    color: #d9534f;
    background-color: #f2dede;
    padding: 10px 15px;
    border: 1px solid #ebccd1;
    border-radius: 4px;
    margin-bottom: 20px;
    font-size: 0.95em;
}

/* Sikerüzenet stílus (opcionális) */
.rd-form-success {
    color: #3c763d;
    background-color: #dff0d8;
    padding: 10px 15px;
    border: 1px solid #d6e9c6;
    border-radius: 4px;
    margin-bottom: 20px;
    font-size: 0.95em;
}

/* Reszponzív design */
@media (max-width: 600px) {
    .rd-form-container {
        padding: 20px;
        margin: 20px;
    }

    .rd-form-container h2 {
        font-size: 1.5em;
    }

    .rd-form-submit button[type="submit"] {
        width: 100%;
    }
}
