

*{
    margin: 0;
    padding: 0;
}

/* Hide scrollbar for Chrome, Safari and Opera */
body::-webkit-scrollbar {
    display: none;
}

body{
    background-color: #040303;
    /* Hide scrollbar for IE, Edge and Firefox */
    -ms-overflow-style: none;
    scrollbar-width: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}
h1{
    color: white;
    font-family: 'IBM Plex Mono', monospace;
    margin-bottom: 30px;
    font-size: 3rem;
}
.login-container{
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    color: white;
    font-family: 'IBM Plex Mono', monospace;
    background-color: #040303;
    padding: 100px;
    max-width: 500px;
    height: auto;
}
.login{
    margin-top: 20px;
}
form input{
    width: 300px;
    padding: 20px;
    margin-top: 10px;
    border: none;
    border-radius: 4px;
    box-sizing: border-box;
    background-color: #1c1c1c;
    color: white;
}
form button{
    margin-top: 20px;
    padding: 10px;
    width: 100%;
    border: none;
    border-radius: 4px;
    background-color: white;
    color: #1c1c1c;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
}
form button:hover{
    background-color: #e0e0e0;
}
form{

    display: flex;
    flex-direction: column;
}
form div{
    margin-bottom: 15px;
}
.error-message {
    color: #ff4d4d; /* A reddish color for errors */
    background-color: rgba(255, 77, 77, 0.1);
    border: 1px solid #ff4d4d;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 1.5rem;
}

/* Mobile Responsiveness */
@media (max-width: 480px) {
    .login-container {
        padding: 2rem;
        width: 90%;
        box-sizing: border-box;
    }

    form input, form button {
        width: 100%;
        box-sizing: border-box;
        font-size: 16px;
        padding: 1rem;
    }

    h1 {
        font-size: 2.5rem;
        text-align: center;
    }
}