﻿/* Glowing Background */
.glowing-container {
    position: relative;
    width: 100%;
    height: 100vh;
    background: radial-gradient(circle, #004D64, #021F2D);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

/* Glowing Dots */
.glow-dots {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    pointer-events: none;
    overflow: hidden;
}

    .glow-dots::before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at 15% 50%, rgba(0, 255, 255, 0.7) 20px, transparent 40px), radial-gradient(circle at 75% 80%, rgba(0, 255, 255, 0.7) 25px, transparent 50px), radial-gradient(circle at 50% 10%, rgba(0, 255, 255, 0.7) 10px, transparent 20px);
        animation: pulse 3s infinite alternate ease-in-out;
    }

/* Pulsing Animation */
@keyframes pulse {
    0% {
        opacity: 0.6;
        transform: scale(0.9);
    }

    100% {
        opacity: 1;
        transform: scale(1.1);
    }
}

/* Swinging & Rotating Logo */
.swinging-rotating-logo {
    width: 100px;
    height: auto;
    animation: swingRotate 3s infinite alternate ease-in-out;
}

/* Swing & Rotate Animation */
@keyframes swingRotate {
    0% {
        transform: rotate(-10deg) translateY(0px);
    }

    50% {
        transform: rotate(0deg) translateY(-5px);
    }

    100% {
        transform: rotate(10deg) translateY(0px);
    }
}

/* Fixed Logo Container */
.fixed-logo-container {
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
}

/* Logo Animation */
.animated-logo {
    width: 200px;
    height: auto;
    animation: enlargeShrink 5s infinite alternate ease-in-out;
}

/* Enlarging & Shrinking Animation */
@keyframes enlargeShrink {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.3);
    }
}

/* Welcome Text */
.bright-text {
    font-size: 18px;
    font-weight: bold;
    color: #00f2ff;
    text-shadow: 0 0 10px #00f2ff, 0 0 20px #0099cc;

}

/* Soft glowing background for reset form */
.glowing-reset-container {
    position: relative;
    width: 90%;
    max-width: 400px;
    margin: auto;
    padding: 25px;
    border-radius: 10px;
    background: linear-gradient(45deg, #021F2D, #06283D);
    box-shadow: 0 0 12px rgba(0, 242, 255, 0.3);
    text-align: center;
}

/* Smooth glowing input field */
.glowing-input {
    border: 2px solid #007a99;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-size: 16px;
    padding: 10px;
    box-shadow: 0 0 10px rgba(0, 122, 153, 0.3);
    width: 100%;
}

/* Glowing Button */
.btn-glow {
    background: transparent;
    color: white;
    font-size: 16px;
    padding: 10px;
    border-radius: 8px;
    border: 2px solid rgba(0, 242, 255, 0.5);
    outline: none;
    display: block;
    width: 100%;
    text-align: center;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 0px 10px rgba(0, 242, 255, 0.4);
}

    .btn-glow:hover {
        box-shadow: 0px 0px 20px rgba(0, 242, 255, 0.8);
        transform: scale(1.02);
        border-color: rgba(0, 242, 255, 0.8);
    }

.SignIn-text {
    color: white;
    font-family:'Bookman Old Style';
    outline: medium;

}


/* Responsive Adjustments */
@media (max-width: 768px) {
    .bright-text {
        font-size: 16px;
    }

    .animated-logo {
        width: 150px;
    }

    .swinging-rotating-logo {
        width: 80px;
    }

    .glowing-reset-container {
        padding: 20px;
    }
}


/* Wave Ripple Background */
@keyframes waveEntry {
    0% {
        transform: scale(0.2);
        opacity: 0.5;
    }

    70% {
        transform: scale(1.5);
        opacity: 0.3;
    }

    100% {
        transform: scale(2);
        opacity: 0;
    }
}



.border-teal {
    border: 1px solid #80cbc4 !important;
}

