body {
    background-color: #dcdcdc;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.login-container {
    background-color: #333;
    color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    text-align: center;
    width: 320px;
    position: relative;
}

/* Logo container */
.logo-container {
    text-align: center;
    margin-bottom: 15px;
}

/* Login Logo with effects */
.logo {
    width: 80px;
    margin-bottom: 15px;
    transition: transform 0.3s ease-in-out, filter 0.3s ease-in-out;
    border: 1px solid black;
    filter: drop-shadow(0px 0px 8px rgba(255, 0, 0, 0.5)); /* Subtle red glow */
}

/* Hover effect */
.logo:hover {
    transform: scale(1.1);
    filter: drop-shadow(0px 0px 15px rgba(255, 0, 0, 0.7)); /* Stronger red glow */
}

.input-group {
    display: flex;
    align-items: center;
    background: #444;
    border-radius: 4px;
    padding: 5px 10px;
    margin-bottom: 10px;
}

.input-group label {
    color: #aaa;
    margin-right: 5px;
}

.input-group input {
    flex: 1;
    border: none;
    background: transparent;
    color: white;
    padding: 8px;
    font-size: 16px;
}

.input-group input:focus {
    outline: none;
}

.error-msg {
    color: red;
    font-size: 12px;
    display: block;
    margin-top: 5px;
}

.toggle-password {
    cursor: pointer;
    margin-left: 10px;
    color: #ccc;
}

.login-btn {
    background-color: red;
    color: white;
    padding: 10px;
    border: none;
    width: 100%;
    font-size: 16px;
    margin-top: 10px;
    cursor: pointer;
}

.reset-btn {
    background-color: #666;
    color: black;
    padding: 10px;
    border: none;
    width: 100%;
    font-size: 16px;
    margin-top: 5px;
    cursor: pointer;
}

.hidden {
    display: none;
}

@keyframes moveLogo {
    0% {
        transform: translateY(0) scale(1);
    }
    100% {
        transform: translateY(-300px) translateX(-200px) scale(0.5);
    }
}

.logo.move {
    animation: moveLogo 1s forwards;
}
