body {
    font-family: "Inter", sans-serif;
    overflow: hidden;
    background-color: #0c0a18; /* Un fondo más oscuro, casi negro azulado */
}

#background-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    cursor: none;
}

.glass-card {
    background: rgba(15, 23, 42, 0.72);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);

    border: 1px solid rgba(255, 255, 255, 0.08);

    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.45),
        0 0 30px rgba(14, 165, 233, 0.15);

    border-radius: 24px;

    transition: 0.4s;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 50px rgba(14, 165, 233, 0.25);
}

@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
.form-input {
    background: rgba(255, 255, 255, 0.08);

    border: 1px solid rgba(255, 255, 255, 0.08);

    transition: 0.35s;

    color: white;
}

.form-input:hover {
    background: rgba(255, 255, 255, 0.12);
}

.form-input:focus {
    background: rgba(255, 255, 255, 0.15);

    border-color: #00c8ff;

    box-shadow:
        0 0 0 3px rgba(0, 200, 255, 0.2),
        0 0 20px rgba(0, 200, 255, 0.25);
}
/*
.form-input::-moz-placeholder {
  color: rgba(156, 163, 175, 0.6);
}

.form-input:-ms-input-placeholder {
  color: rgba(156, 163, 175, 0.6);
}

.form-input::placeholder {
  color: rgba(156, 163, 175, 0.6);
}
*/
#status-message {
    transition: opacity 0.5s ease-in-out;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition:
        max-height 0.5s ease,
        opacity 0.5s ease;
}

#status-message.show {
    opacity: 1;
    max-height: 100px;
}

/* style for login button */
#login-button {
    background: linear-gradient(90deg, #06b6d4, #3b82f6, #8b5cf6, #06b6d4);

    background-size: 300%;

    animation: buttonGradient 5s linear infinite;
}

@keyframes buttonGradient {
    0% {
        background-position: 0%;
    }

    100% {
        background-position: 300%;
    }
}

/*style for heading */
.text-center h1 {
    animation: fadeDown 1s ease;
}

@keyframes fadeDown {
    from {
        opacity: 0;

        transform: translateY(-30px);
    }

    to {
        opacity: 1;

        transform: translateY(0);
    }
}


