.hidden {
    display: none;
}

@keyframes fadeIn {
    0% {opacity: 0;}
    100% {opacity: 1;}
}

@keyframes fadeOut {
    0% {opacity: 1;}
    100% {opacity: 0;}
}

body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: black;
    color: white;
    font-family: Arial, sans-serif;
    font-size: 50px;
    overflow: hidden;
}
#container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
#text {
    position: relative;
    z-index: 1;
}


#logo {
    cursor: pointer;
    position: fixed;
    bottom:7.5%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center; /* Add this line */
    display: flex; /* Add this line */
    flex-direction: column; /* Add this line */
    align-items: center; /* Add this line */

}

#logo p {
    color: white;
    font-size: 15px; /* adjust as needed */
    text-align: center;
    margin: 0; /* Add this line */
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif
}

#logo img {
    animation: fadeIn 1s;
    width: 200px; /* adjust as needed */
    height: 100px; /* adjust as needed */
    margin: 0;
    padding: 0;
    display: block;
}

#popup {
    animation: fadeIn 1s;
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    backdrop-filter: blur(20px);

    width: 200px; /* Set width to 60% of the page */
    
    background: rgba(125, 125, 125, 0.1);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}

#popup.hide {
    animation: fadeOut 1s;
}

.option {
    display: flex;
    align-items: center;
    margin: 0px;
    border-radius: 10px; /* adjust as needed */
}

.option:hover {
    cursor: pointer;
    filter: invert(1);
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(30px);
    box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.5);


}

.option img {
    margin-right: 10px;
    margin-bottom: 10px;
    width: 70px;
    height: 70px;
}

.option p {
    text-align: center;
    font-weight:100;
    font-size: 15px;
    margin-bottom: 15px;
}


#investors-popup, #inventors-popup {
    display: none;
    /* animation: fadeIn 0.3s; */
}

#investors-popup input, #inventors-popup input {
    background-color: transparent;
    color: white;
    border: 1px solid white;
    border-radius: 5px; /* adjust as needed */
    font-size: 14px; /* adjust as needed */
    display: block;
    margin: auto;
    width: 90%;
    text-align: center;
    margin-bottom: 10px;
    margin-top: 10px;
    height: 30px; /* adjust as needed */

}

#investors-popup button, #inventors-popup button {
    background-color: transparent;
    color: white;
    border-radius: 5px; /* adjust as needed */
    font-size: 13px; /* adjust as needed */
    display: block;
    margin: auto;
    border: none;
    box-shadow: none;
    margin-bottom: 20px;

}

#investors-popup input::placeholder, #inventors-popup input::placeholder {
    color: #ccc; /* adjust as needed */
    opacity: 1; /* Firefox */
    text-align: center;

}

#investors-popup button:hover, #inventors-popup button:hover {
    background-color: white; /* adjust as needed */
    color: black; /* adjust as needed */
    cursor: pointer;
}

#wrong-password::placeholder {
    color: red;
}

#forInvestors p, #forInventors p {
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif
}