﻿.forgetPwd {
    font-size: 15px;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding-left: 2px;
    padding-right: 2px;
    color: #4dc4ff;
}
/* 🌍 Global 80% Zoom for Entire Login Page */
html, body {
    width: 100%;
    height: 100%;
    overflow-x: hidden;
}

/* Works in Chrome, Edge, Safari, etc. */
body {
    zoom: 0.8; /* 80% zoom effect */
    transform-origin: top center;
}

/* Fallback for Firefox */
@supports not (zoom: 1) {
    body {
        transform: scale(0.8);
        transform-origin: top center;
    }
}
/* Snowfall CSS */
.snowfall {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none; /* allow clicks through */
    z-index: 9998; /* behind fireworks */
    overflow: hidden;
}

.snowflake {
    position: absolute;
    top: -10px;
    color: white;
    user-select: none;
    animation-name: fall;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

@keyframes fall {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(110vh);
    }
}

/* Fireworks canvas */
.fireworks-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none; /* allow clicks */
    z-index: 9999; /* above snowflakes */
}