body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background-color: #0d1117; /* Dark background similar to the image */
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow: hidden; /* Hide potential scrollbars */
    background-image: url(/pics/1.jpg); /* Placeholder for background image */
    background-size: cover;
    background-position: center;
    position: relative;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6); /* Overlay for better text readability */
    z-index: 1;
}

.login-container {
    position: relative;
    z-index: 2;
    padding: 20px;
}

.login-box {
    background: rgba(255, 255, 255, 0.05); /* Semi-transparent background */
    border: 1px solid rgba(0, 255, 255, 0.3); /* Cyan border */
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.5); /* Glowing effect */
    backdrop-filter: blur(10px); /* Frosted glass effect */
    width: 350px;
    max-width: 90%;
}

.logo {
    font-size: 3em;
    font-weight: 700;
    margin-bottom: 5px;
    letter-spacing: 2px;
    color: #00ffff; /* Cyan color for the logo */
    text-shadow: 0 0 10px #00ffff, 0 0 20px #00ffff;
}

.secure-login {
    font-size: 0.9em;
    letter-spacing: 1px;
    margin-bottom: 30px;
    color: #a0a0a0;
}

.input-group {
    position: relative;
    margin-bottom: 25px;
}

.input-group input {
    width: calc(100% - 60px); /* Adjust width for icons */
    padding: 12px 15px 12px 40px; /* Padding for left icon */
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.5);
    border-radius: 5px;
    color: #ffffff;
    font-size: 1em;
    outline: none;
    transition: all 0.3s ease;
}

.input-group input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.input-group input:focus {
    border-color: #00ffff;
    box-shadow: 0 0 8px rgba(0, 255, 255, 0.8);
}

.input-group .icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #00ffff;
    font-size: 1.1em;
}

.input-group .icon-right {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #00ffff;
    font-size: 1.1em;
    cursor: pointer; /* For password eye icon */
}

.login-button {
    width: 100%;
    padding: 12px;
    background: linear-gradient(to right, #00ffff, #00bfff); /* Gradient button */
    border: none;
    border-radius: 5px;
    color: #ffffff;
    font-size: 1.1em;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
}

.login-button:hover {
    background: linear-gradient(to right, #00bfff, #00ffff);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
    transform: translateY(-2px);
}

.links {
    margin-top: 25px;
    font-size: 0.85em;
    color: #a0a0a0;
}

.links a {
    color: #00ffff;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.links a:hover {
    color: #00bfff;
    text-decoration: underline;
}

.links span {
    color: #505050;
}

.footer-logo {
    margin-top: 30px;
}

.footer-logo img {
    width: 60px;
    height: 60px;
    filter: drop-shadow(0 0 10px #00ffff); /* Glow effect for the logo */
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .login-box {
        padding: 30px 20px;
    }
    .logo {
        font-size: 2.5em;
    }
    .input-group input {
        width: calc(100% - 50px);
        padding: 10px 12px 10px 35px;
    }
    .input-group .icon, .input-group .icon-right {
        font-size: 1em;
    }
}