#signInModal {
    margin-top: 5vw;
}
.modal-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1dvh;
    background-color: var(--dark-gray);
    border-style: none;
    margin: auto;
    padding: 30px;
    width: 30%; 
    border-radius: 10px;
    animation-name: animatetop;
    animation-duration: 0.4s;
}
.modal-content > p {
    font-size: 18pt;
}
.modal-content > input {
    border: none;
    font-size: 18pt;
    border-radius: 5px;
    padding-left: 1%;
}
.modal-content > button {
    margin-top: 1.5dvh;
    height: 44px;
    font-size: 18pt;
}
@media screen and (max-width: 1000px) {
    .modal-content {
        width: 80%;
    }
}