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

.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%;
    }
}

.register-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.register-form form {
    width: 100%;
    max-width: 550px;
}

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

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

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

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

.register-form select:focus,
.register-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-register {
    background: #3577da;
    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-register:hover {
    background: #2e2391;
}

/* 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;
}