/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    direction: rtl;
    background-color: #e8f5e9; /* أخضر فاتح */
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 600px;
    margin: 50px auto;
    padding: 50px;
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
}

header {
    margin-bottom: 40px;
    position: relative;
}

header .logo {
    width: 150px;
    height: auto;
    margin-bottom: 20px;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

header .logo:hover {
    transform: scale(1.1);
}

header p {
    font-size: 24px;
    color: black;
    margin-bottom: 10px;
    font-weight: bold;
    letter-spacing: 2px;
}

header h2 {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    color: #007bff;
    font-size: 16px;
}

.verification-form {
    text-align: right;
}

label {
    display: block;
    margin-bottom: 10px;
    font-size: 12px;
    font-weight: bold;
}

input[type="text"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
}

.verify-btn {
    width: 100%;
    padding: 12px;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    font-weight: 600;
    margin: 20px 0 0 10px;
}

.verify-btn:hover {
    background-color: #218838;
    transform: translateY(-2px);
}

.result-section {
    margin-top: 20px;
    text-align: right;
}

.success-message {
    background-color: #28a745;
    color: white;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    margin-top: 20px;
}

.error-message {
    background-color: #dc3545;
    color: white;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    margin-top: 20px;
}