*{
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
}
.message-popup {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    background-color: #fff;
    /* White background */
    /* Black text */
    border: 0.5px solid #ffffff;
    /* Thin black border for all sides */
    /* Highlighted left border */
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 5px;
    font-size: 14px;
    overflow: hidden;
}

.skip-btn {
    display: flex;
    justify-content: end;
    align-items: end;
    text-decoration: none;
    color: #000;
    background-color: transparent;
    border-radius: 5px;
    border: none;
}

.skip-btn:hover {
    background-color: transparent;
}

.popup-error {
    color: #3d1e1e;
    background-color: #ffb0ad;
    border: 1px solid  #3d1e1e;
}

.popup-success {
    color: #1e3d1e;
    background-color: #adffb0;
    border: 1px solid  #1e3d1e;
}

.error {
    color: red;
}

.success {
    color: green;
}

/* Global Styles */
body,
html {
    margin: 0;
    padding: 0;
    height: 100%;
    background: #ffffff;
    overflow-x: hidden;
}

/* Animated Background */
.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ffffff, #ffffff, #ffffff);
    background-size: 400% 400%;
    animation: gradientMove 15s ease infinite;
    z-index: -1;
}


@keyframes glowingBorder {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Fixed Top Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 10px 0;
    z-index: 1000;
}

.container {
    width: 90%;
    margin: 0 auto;
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

/* Brand Style */
.brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #000000;
    font-size: 13px;
    font-weight: 500;
}

.brand-text {
    margin-bottom: 5px;
    font-size: 16px;
}

.logo {
    height: 125px;
    padding: 4px;
    border-radius: 8px;
    transition: transform 0.6s ease;
}

.animate-logo:hover {
    transform: scale(1.1) rotate(10deg);
}

/* Login Section */
.login-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 75vh;
    margin-top: 0 !important;
}

.login-form form {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px 50px;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    width: 100%;
    max-width: 500px;
    animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

    to {
        transform: translateY(0px);
        opacity: 1;
    }
}

.login-form h2 {
    color: #014c97;
    text-align: center;
}

/* Input Group */
.login-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.login-form label {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 6px;
}

.login-form input[type="text"],
.login-form input[type="email"],
.login-form input[type="password"] {
    padding: 12px 14px;
    font-size: 15px;
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: #f9f9f9;
    transition: all 0.3s ease;
}

.login-form input:focus {
    border-color: #0057ff;
    background-color: #fff;
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 87, 255, 0.1);
}

/* Button */
.btn-login {
    background: #DA354B;
    color: white;
    padding: 14px 20px;
    border: none;
    width: 100%;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-login:hover {
    background: #912332;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .navbar-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .brand {
        flex: 1;
        align-items: center;
    }

    .logo {
        height: 75px;
    }

    .login-form {
        margin-top: 60px;
        padding: 30px 20px;
    }
}


#backgroundCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, #dde6ff 0%, #ffffff 100%);
    z-index: -1;
    opacity: 0.9;
}

#backgroundCanvas1 {
    background: linear-gradient(to top, #eef2ff, #eef2ff, #014c97, #f1f5ff, #f1f5ff, #f3f7ff, #f3f7ff, #f3f7ff, #f3f7ff);
    opacity: 0.9;
}