html, body {
    max-height: 100vh;
    max-width: 100vw;
    margin: 0;
  }


.woo-title {
    margin-bottom: 0px;
    font-family: "Roboto Mono";
    font-size: "150px"!important;
    color: white;
}

#container {
    color: white;
    text-align: center;
}

#container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    min-width: 100vw;
    background-color: #3a3732;
    align-items: center;
    justify-content: space-around;
    margin: 10px;
    overflow: hidden;
    font-family: "Roboto Mono";
    color: white;
    text-align: center;
}

.footer {
    display: flex;
    flex-direction: row;
    width: 600px;
    justify-content: space-between;
}

#banner-img {
    max-width: 600px;
    max-height:450px;
    width: auto;
    height: auto;
    
}

.fa-solid {
    color: white;
}

.input-container {
    display: flex;
    flex-direction: column;
    width: 400px;
}

.input {
    font-family: "Roboto Mono";
    padding: 20px;
    margin-bottom: 5px;
    border: none;
    display: flex;
    border-radius: 12px;
}

#button {
    background-color: white;
    border: solid white;
    color: black;
    padding: 15px;
    cursor: pointer;
    font-family: "Roboto Mono";
    display: block;
    border-radius: 12px;
}

#button:hover {
    background-color: black;
    border: solid white;
    color: white;
}

#uc_password {
    padding-right: 30px; /* Adjust based on the size of your icon */
    cursor: text;
}

#togglePassword {
    display: block;
    position: absolute;
    color: #747070;
    right: 5px; /* Adjust based on desired position inside the input */
    top: 12px;
    /* transform: translateY(-10%); */
    cursor: pointer;
}

@media(max-width:800px) {
    
    #banner-img {
        max-width: 90vw;
        width: auto;
        height: auto;
        
    }
    .footer {
        width:90%;
    }
    .input-container {
        /* flex-direction: column; */
        align-items: center;
        width: 100%;

    }
    #button {
        width: 100%;
    }

    .input {
        width: 100%;margin-bottom: 10px;
    }

    #togglePassword {
        right: 5px;
        top: 15%;
    }

    .fa-2xl {
        font-size: 1em;
    }
}
