﻿
body {
    background: #ffffff;
    font-family: "IRANSans", sans-serif;
}

.contact-form-container {
    max-width: 600px;
    margin: 50px auto;
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 173, 238, 0.2);
    direction: rtl;
}

    .contact-form-container h2 {
        text-align: center;
        color: #007acc;
        margin-bottom: 20px;
    }

label {
    display: block;
    margin-bottom: 5px;
    color: #333;
    font-weight: bold;
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #b3d7ea;
    border-radius: 10px;
    margin-bottom: 20px;
    background-color: #f5fbff;
    transition: border 0.3s;
}

    input:focus,
    textarea:focus {
        border-color: #00aaff;
        outline: none;
    }

button {
    background-color: #00aaff;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s;
}

    button:hover {
        background-color: #007acc;
    }

.success-message {
    color: green;
    text-align: center;
    margin-top: 20px;
    font-weight: bold;
}
