﻿/* حركة الشعار */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.logo-animation {
    animation: float 3s ease-in-out infinite;
}

/* تحسين التصميم */
body {
    background: linear-gradient(135deg, #f5f7fa, #c3cfe2);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.card {
    border: none;
    border-radius: 15px;
}

.card-header {
    border-radius: 15px 15px 0 0;
}

.btn-primary {
    background-color: #007bff;
    border: none;
    transition: background-color 0.3s ease;
}

    .btn-primary:hover {
        background-color: #0056b3;
    }

.form-control {
    border-radius: 10px;
    padding: 10px;
}

    .form-control:focus {
        border-color: #007bff;
        box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
    }
/* إضافة ظل للنص داخل البطاقة */
.card-body h3 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

/* تحسين تصميم الروابط */
a {
    color: #007bff;
    text-decoration: none;
}

    a:hover {
        text-decoration: underline;
    }