/* assets/css/login_style.css */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --primary-color: #00d2d3;
    --bg-gradient: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
}

body, html {
    height: 100%;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
}

/* Splash Screen (Same as before) */
#splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0f2027;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 1s ease-out;
}
.splash-content { text-align: center; animation: pulse 2s infinite; }
@keyframes pulse {
    0% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 1; }
    100% { transform: scale(1); opacity: 0.8; }
}

/* Login Layout */
.login-container {
    height: 100vh;
    background: var(--bg-gradient);
    color: white;
    position: relative;
    opacity: 0;
    transition: opacity 1s ease-in;
}

.login-content-wrapper {
    height: 100%;
    display: flex;
    align-items: center;
}

/* Left Side Styles */
.expertise-icon { font-size: 2.5rem; margin-bottom: 10px; color: var(--primary-color); }
.expertise-item { text-align: center; padding: 10px; transition: transform 0.3s; }
.expertise-item:hover { transform: translateY(-5px); }
.expertise-label { font-size: 0.8rem; color: #ccc; text-transform: uppercase; letter-spacing: 1px; }

/* Right Side - Premium Glass Login Card */
.glass-login-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px); /* This makes it glassy */
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    width: 100%;
    max-width: 450px; /* Limits width for better look */
    margin: 0 auto; /* Centers it */
}

.form-floating > .form-control {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
}

.form-floating > .form-control:focus {
    background: rgba(0, 0, 0, 0.4);
    box-shadow: none;
    border-color: var(--primary-color);
}

.form-floating > label {
    color: rgba(255, 255, 255, 0.6);
}

.form-control::placeholder {
    color: transparent; /* Hide placeholder for floating label effect */
}

.btn-login-premium {
    background: linear-gradient(45deg, var(--primary-color), #00a8a9);
    border: none;
    color: #fff;
    padding: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 10px;
    width: 100%;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 210, 211, 0.3);
}

.btn-login-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 210, 211, 0.4);
}