body {
    background: linear-gradient(to right, #070a1b, #101636);
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    padding: 0;
    color: #ffffff;
}

.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 90vh;
}

.login-box {
    background-color: #0e132d;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 255, 255, 0.15);
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.login-box h1 {
    margin-bottom: 25px;
    color: #00ffe0;
    font-size: 1.8rem;
}

.login-box form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.login-box input {
    padding: 12px;
    border-radius: 8px;
    border: none;
    font-size: 1rem;
    background-color: #1a203d;
    color: #ffffff;
    outline: none;
}

.login-box input::placeholder {
    color: #aaa;
}

.login-box button {
    background: linear-gradient(135deg, #00ffe0, #0075ff);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.login-box button:hover {
    transform: scale(1.03);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

.link {
    margin-top: 15px;
    font-size: 0.9rem;
}

.link a {
    color: #00ffe0;
    text-decoration: none;
}

.link a:hover {
    text-decoration: underline;
}


#particles-js {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
