@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #1C1C1C;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    user-select: none;
}

.login-container {
    padding: 80px;
    border-radius: 24px;
    box-shadow: 0 0 25px rgba(15, 167, 255, 0.3);
    width: 100%;
    max-width: 600px;
    min-height: 300px;
    box-sizing: border-box;
    text-align: center;
}

.login-container h2 {
    margin-bottom: 30px;
    color: #0FA7FF;
}

.input-group {
    display: flex;
    align-items: center;
    background: #333333;
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    color: #FFFFFF;
}

.input-group i {
    font-size: 20px;
    margin-right: 10px;
    color: #0FA7FF;
}

.input-group input {
    flex: 1;
    border: none;
    background: transparent;
    outline: none;
    color: #FFFFFF;
    font-size: 16px;
}

.forgot-password {
    text-align: right;
    margin-bottom: 20px;
}

.forgot-password a {
    color: #0FA7FF;
    text-decoration: none;
    font-size: 14px;
}

button {
    width: 100%;
    padding: 12px;
    background-color: #0FA7FF;
    border: none;
    border-radius: 16px;
    color: #FFFFFF;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #0C92E4;
}

footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  padding: 12px;
  font-size: 14px;
  color: #aaa;
  background-color: transparent;
  z-index: 1000;
}

.notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #ff4d4d;
    color: white;
    padding: 14px 20px;
    border-radius: 12px;
    font-size: 14px;
    box-shadow: 0 0 10px rgba(0,0,0,0.4);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    z-index: 9999;
}

.notification.show {
    opacity: 1;
    transform: translateY(0);
}

.notification .progress {
    height: 3px;
    background: rgba(255,255,255,0.7);
    width: 100%;
    animation: progressAnim 3s linear forwards;
    margin-top: 8px;
    border-radius: 8px;
}

@keyframes progressAnim {
    from { width: 100%; }
    to { width: 0%; }
}