/* Base Space Theme */
:root {
    --navy: #1a237e;
    --purple: #ab47bc;
    --teal: #26c6da;
    --bg-dark: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

body {
    font-family: "Poppins", sans-serif;
    background: var(--bg-dark);
    min-height: 100vh;
    overflow: hidden; /* لمنع السكرول لان المحتوى قليل */
}

/* Background Blobs */
.animated-bg {
    position: fixed;
    inset: 0;
    pointer-events: none;
}
.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.4;
}
.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--purple);
    top: -10%;
    left: -10%;
}
.shape-2 {
    width: 250px;
    height: 250px;
    background: var(--teal);
    bottom: -10%;
    right: -5%;
}
/* Different shapes for reset page */
.shape-3 {
    width: 400px;
    height: 400px;
    background: var(--navy);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.2;
}

/* The Glass Card */
.glass-card {
    width: 450px; /* كارت صغير ومركز */
    background: rgba(255, 255, 255, 0.95);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

/* Icons */
.icon-wrapper {
    width: 80px;
    height: 80px;
    background: #f0f7ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.radar-anim {
    animation: pulseWarning 2s infinite;
}
.glow-anim {
    animation: glowTeal 3s infinite alternate;
}

@keyframes pulseWarning {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.7;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes glowTeal {
    from {
        text-shadow: 0 0 10px rgba(38, 198, 218, 0.5);
    }
    to {
        text-shadow: 0 0 20px rgba(38, 198, 218, 0.9);
    }
}

/* Forms */
.custom-input {
    position: relative;
}
.custom-input input {
    border: 2px solid #f0f0f0;
    padding-right: 40px;
    font-weight: 500;
}
.custom-input input:focus {
    border-color: var(--purple);
    box-shadow: 0 0 0 4px rgba(171, 71, 188, 0.1);
}
.field-icon {
    position: absolute;
    right: 20px;
    top: 22px;
    color: #ccc;
}

/* Buttons */
.btn-gradient {
    background: linear-gradient(90deg, var(--navy), var(--purple));
    border: none;
    transition: 0.3s;
}
.btn-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(26, 35, 126, 0.3);
}

.btn-success-gradient {
    background: linear-gradient(90deg, #2ecc71, #27ae60);
    border: none;
}
.btn-success-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(46, 204, 113, 0.3);
}

/* Text Utils */
.text-navy {
    color: var(--navy);
}
.text-teal {
    color: var(--teal);
}
