body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #e0e5ec;
    margin: 0;
    font-family: 'Arial', sans-serif;
    overflow: hidden; /* Prevent scrollbar during confetti effect */
}

.login-container {
    background: #e0e5ec;
    border-radius: 20px;
    box-shadow: 5px 5px 15px #c3c8d2, -5px -5px 15px #ffffff;
    padding: 40px;
    width: 200px;
    text-align: center;
}

.logo-container img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    box-shadow: 3px 3px 10px #pink, -3px -3px 10px #pink;
    margin-bottom: 20px;
}

h2 {
    margin: 0;
    font-size: 24px;
    color: #333;
}

p {
    margin: 10px 0 30px;
    color: #777;
}

.input-group {
    margin-bottom: 20px;
}

.input-group input {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 10px;
    background: #e0e5ec;
    box-shadow: inset 5px 5px 10px #c3c8d2, inset -5px -5px 10px #ffffff;
    outline: none;
    font-size: 16px;
    color: #333;
}

.login-btn {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 20px;
    background-color: #00aaff;
    color: white;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 3px 3px 10px #c3c8d2, -3px -3px 10px #ffffff;
    transition: 0.3s ease;
}

.login-btn:hover {
    background-color: #008fcc;
}

.form-footer {
    margin-top: 20px;
    color: #777;
    font-size: 14px;
}

.form-footer a {
    text-decoration: none;
    color: #00aaff;
    font-weight: bold;
    transition: 0.3s ease;
}

.form-footer a:hover {
    color: #008fcc;
}

#confetti-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
}

/* Notification styles */
.notification {
    display: none;
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: #f44336;
    color: white;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.notification.show {
    display: block;
    opacity: 1;
}
