body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    background-color: #000;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(-45deg, #fffefd, #82d5ffbf, #6dc8e9, #235bd5);
}

.password-box {
    position: relative;
    padding: 40px;
    background-color: #1a1a1a;
    border-radius: 15px;
    box-shadow: 0 0 30px 10px rgba(50, 50, 50, 0.1);
    z-index: 1;
}

.password-box h2 {
    color: #fff;
    margin-bottom: 20px;
}

.password-box input {
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 5px;
    border: none;
    width: calc(100% - 20px);
}

.password-box button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background-color: #4CAF50;
    color: white;
    cursor: pointer;
}

.password-box button:hover {
    background-color: #45a049;
}

.password-box #errorText {
    color: red;
    margin-top: 10px;
}
#logo-container {
     position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

#logo-container::before {
    content: '';
    display: inline-block;
    background: url('logo.png') no-repeat center center;
    background-size: contain; /* Adjust the size as needed */
    width: 1200px; /* Set the width of your logo */
    height: 220px; /* Set the height of your logo */
    opacity: 0.5; /* Adjust the opacity if needed */
}
@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

#typewriter {
    overflow: hidden; /* Ensures the content is not revealed until the animation */
    border-right: .15em solid rgb(0, 30, 255); /* The typwriter cursor */
    white-space: nowrap; /* Keeps the content on a single line */
    margin: 0 auto; /* Gives that scrolling effect as the typing happens */
    letter-spacing: .15em; /* Adjust as needed */
    animation: typing 3.5s steps(40, end), blink-caret .75s step-end infinite;
}