[data-bs-theme="light"] .card {
    border: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

[data-bs-theme="dark"] .card {
    background-color: #1e2325;
    border: 1px solid rgba(255,255,255,0.1);
}

body {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-card {
    width: 100%;
    max-width: 400px;
    padding: 2rem;
    border-radius: 1rem;
}

.password-container {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 10;
    color: #6c757d;
}

.theme-toggle {
    position: absolute;
    top: 20px;
    right: 20px;
}
