
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    height: 100vh;
    background: linear-gradient(135deg, red, blue);
    display: flex;
    justify-content: center;
    align-items: center;
}

/* 🎬 Background Video */
#bgVideo {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    z-index: -1;
}

/* 🌫 Overlay */
.overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    top: 0;
    left: 0;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

/* ✨ Animated Title */
.bgText {
    font-size: 35px;
    margin-bottom: 20px;
    animation: floatText 3s ease-in-out infinite alternate;
}

@keyframes floatText {
    from { transform: translateY(0px); }
    to { transform: translateY(15px); }
}

/* 💎 Glass Card */
.box {
    width: 350px;
    padding: 30px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.15); /* FIXED */
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    text-align: center;
    color: lightcyan;
}

/* Inputs */
input, select {
    width: 100%;
    padding: 10px;
    margin: 8px 0;
    border: none;
    border-radius: 8px;
    outline: none;
}

/* Button */
button {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    border: none;
    border-radius: 8px;
    background: lightyellow;
    color: lightgreen;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background: #ff4f81;
    transform: scale(1.05);
}

/* Dashboard */
.dashboard {
    text-align: center;
    color: lightblue;
}

.branches button {
    margin: 10px;
    width: 200px;
}

a {
    color: lightcoral;
    text-decoration: none;
    font-weight: bold;
}