
body {
   
    background-color: #009688;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 30px;
    color: #333;
   direction:rtl;
}

    .success-popup {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0,0,0,0.4);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1000;
    }

    .popup-content {
        background-color: #fff;
        padding: 30px;
        border-radius: 10px;
        text-align: center;
        box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    .popup-content h2 {
        color: #4CAF50;
        margin-bottom: 10px;
    }

    .popup-content p {
        margin-bottom: 20px;
        font-size: 16px;
        color: #333;
    }

    .btn-back {
        background-color: #f8b864;
        color: white;
        padding: 10px 20px;
        border-radius: 5px;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s;
    }

    .btn-back:hover {
        background-color: #e49f3f;
    }

.form-container {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    max-width: 600px;
    margin: auto;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);

    direction:rtl;
}
input, select,placeholder {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 5px;
    border: 1px solid #1aa44e;
    transition: 0.3s;
}
input:hover, select:hover {
    border-color: #f8b864;
    
    
}
.btn {
    background-color: #f8b864;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    color: white;
    cursor: pointer;
    border-radius: 5px;
}
.success-message {
    color: green;
    font-weight: bold;
}
