/* Login Form Styles - Dark Glass Effect */

/* Fix for scrolling issue - ensure body doesn't scroll if content fits */
body {
    overflow-x: hidden;
        background-image: url('../../images/flextv_new.jpg') !important;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    animation: none !important; /* Disable blob animation */
}

/* Glassmorphism Card Style */
.login-card-glass {
    background: rgba(30, 30, 30, 0.7) !important; /* Dark semi-transparent background */
    backdrop-filter: blur(10px) !important; /* Blur effect */
    -webkit-backdrop-filter: blur(10px) !important; /* Safari support */
    border: 1px solid rgba(255, 255, 255, 0.1) !important; /* Subtle border */
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37) !important; /* Shadow */
    color: #fff !important; /* Light text */
    min-width: 320px; /* Prevent becoming too narrow on mobile */
    max-width: 90vw; /* Ensure it doesn't overflow on very small screens */
}

/* Input fields styling for glass effect */
.login-card-glass .uk-input {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: #fff !important;
}

.login-card-glass .uk-input:focus {
    background: rgba(255, 255, 255, 0.2) !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
}

.login-card-glass .uk-input::placeholder {
    color: rgba(255, 255, 255, 0.6) !important;
}

/* Headings styling */
.login-card-glass h1,
.login-card-glass h2,
.login-card-glass h3 {
    color: #ffffff !important;
}

/* Muted text styling adjustment for dark background */
.login-card-glass .uk-text-muted {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* Label styling */
.login-card-glass .uk-form-label {
    color: #e0e0e0 !important;
}

/* Navy Glass Button Style */
.login-card-glass .uk-button-primary {
    background: linear-gradient(135deg, rgba(246, 211, 101, 0.8) 0%, rgba(253, 160, 133, 0.8) 100%) !important; /* Warm Peach Glass */
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: #ffffff !important;
    backdrop-filter: blur(5px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    border-radius: 4px !important;
}

.login-card-glass .uk-button-primary:hover {
    background: linear-gradient(135deg, rgba(246, 211, 101, 0.9) 0%, rgba(253, 160, 133, 0.9) 100%) !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
    transform: translateY(-2px);
    box-shadow: 0 7px 14px rgba(0, 0, 0, 0.25), 0 0 15px rgba(253, 160, 133, 0.4); /* Peach glow */
}

.login-card-glass .uk-button-primary:active {
    background: linear-gradient(135deg, rgba(246, 211, 101, 1) 0%, rgba(253, 160, 133, 1) 100%) !important;
    transform: translateY(1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.1) !important;
}

/* Registration card styling */
.registration-card-glass {
    background: rgba(30, 30, 30, 0.5) !important;
    backdrop-filter: blur(5px) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
}

.registration-card-glass .uk-card-title {
    color: #fff !important;
}

.registration-card-glass p {
    color: #ccc !important;
}



.bg-image {
    display: none;
}
