/* style.css */
body {
    background-color: #0f172a;
    color: #f8fafc;
}

/* Background Glow */
.bg-gradient-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    background: radial-gradient(circle at 15% 50%, rgba(59, 130, 246, 0.15), transparent 25%),
        radial-gradient(circle at 85% 30%, rgba(147, 51, 234, 0.15), transparent 25%);
}

/* Glassmorphism Cards */
.glass-card {
    background: rgba(30, 41, 59, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-2px);
    border-color: rgba(59, 130, 246, 0.5);
}

/* Form Inputs */
.input-field {
    background-color: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    transition: all 0.3s ease;
}

.input-field:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.2);
}

/* Revolving Color Border */
@property --angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

.rotating-border-wrapper {
    position: relative;
    padding: 6px;
    border-radius: 50%;
    background-image: conic-gradient(from var(--angle), #3b82f6, #a855f7, #ec4899, #3b82f6);
    animation: 4s rotate linear infinite;
    display: flex;
    justify-content: center;
    align-items: center;
}

@keyframes rotate {
    to {
        --angle: 360deg;
    }
}

/* Typewriter Cursor Blinking */
@keyframes blink {

    from,
    to {
        border-color: transparent
    }

    50% {
        border-color: #3b82f6;
    }
}

.animate-blink {
    animation: blink .75s step-end infinite;
}