.addServerPanel
{
    position: fixed;
    left: 50%;
    right: 50%;
    top: 50%;
    left: 50%;
    width: min(70%, 650px);
    height: max-content;
    background-color: #181818;
    padding: 60px;
    padding-top: 0px;
    padding-bottom: 25px;
    border-radius: 5px;
    transform: translate(-50%, -50%);
    text-align:center;
}

.error
{
    background-color: rgb(255, 101, 101);
    padding: 10px;
    border-radius: 15px;
    margin-bottom: 60px;
}


input
{
    font-size: 100%;
    background-color: #070707;
    border: solid rgb(0, 141, 99) 2px;
    padding: 10px;
    color: white;
    border-radius: 3px;
    font-family: "Share Tech Mono", sans-serif;
    width: 80%;
    transition-duration: 200ms;
}

input:focus
{
    outline: none;
    border: solid rgb(255, 255, 255) 2px;
}