* {
    font-family: "Cairo", serif;
    font-weight: 400;
    font-style: normal;
    direction: rtl;
}
body {
    background: #00091B;
    color: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(52, 90, 145, 0.15) 0%, transparent 20%),
        radial-gradient(circle at 80% 70%, rgba(37, 211, 102, 0.1) 0%, transparent 20%);
}
.arab-font {
    font-family: "Rakkas", serif;
    font-weight: 400;
    font-style: normal;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}
.wrapper {
    animation: fadeIn 1s ease;
    flex: 1;
}
.logo-container {
    background: linear-gradient(135deg, #345a91 0%, #1e3a68 100%);
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(52, 90, 145, 0.3);
    margin-bottom: 30px;
    max-width: 300px;
    animation: float 6s ease-in-out infinite;
}
.form-container {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 500px;
    width: 100%;
}
.form-title {
    color: #fff;
    margin-bottom: 25px;
    font-weight: 700;
    font-size: 1.8rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.form-control {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 12px;
    color: #fff;
    padding: 15px;
    margin-bottom: 15px;
    transition: all 0.3s;
}
.form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(52, 90, 145, 0.5);
    color: #fff;
}
.form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}
.btn-submit {
    background: linear-gradient(135deg, #345a91 0%, #1e3a68 100%);
    border: none;
    border-radius: 12px;
    padding: 15px;
    font-weight: 700;
    width: 100%;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(52, 90, 145, 0.4);
}
.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 90, 145, 0.6);
}
.divider {
    display: flex;
    align-items: center;
    margin: 25px 0;
    color: rgba(255, 255, 255, 0.5);
}
.divider::before, .divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
}
.divider-text {
    padding: 0 15px;
}
.whatsapp-btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border: none;
    border-radius: 12px;
    padding: 15px;
    font-weight: 700;
    width: 100%;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    color: white;
    text-decoration: none;
    display: block;
    text-align: center;
}
.whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    color: white;
}
.copyright {
    text-align: center;
    margin-top: 40px;
    padding: 20px 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.heart {
    color: #e91e63;
    display: inline-block;
    animation: pulse 1.5s infinite;
}
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}
.success-message {
    background: rgba(37, 211, 102, 0.15);
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 20px;
    text-align: center;
    border: 1px solid rgba(37, 211, 102, 0.3);
}
.social-icons {
    display: flex;
    justify-content: center;
    margin: 25px 0;
    gap: 15px;
}
.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.social-icon:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
}
.social-icon.facebook:hover {
    background: #3b5998;
}
.social-icon.twitter:hover {
    background: #1da1f2;
}
.social-icon.instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}
.social-icon.linkedin:hover {
    background: #0077b5;
}
.social-icon.youtube:hover {
    background: #ff0000;
}