#Island {
    background-color: #2a2e2dc6;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 2;
    border-radius: 2vw;
    width: 70vw;
    max-width: 30vw;
    min-width: 20vw;
    height: auto;
    padding: 2.5vh 2vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0.1vw -0.1vw 2vw 0vw rgba(0,0,0,0.75);
    color: white;
}
#login {
    width: 90%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2vh;
}
#text {
    height: 5vh;
    padding-top: 1vh;
    padding-bottom: 2vh;
    font-size: 3vw;
    font-family: "Bebas Neue", sans-serif;
}
#bottom {
    height: 6vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
#bottom button {
    width: 100%;
    min-width: 0;
    height: 6vh;
    border-radius: 2vw;
    font-size: 2vw;
    border: none;
    background-color: rgb(221, 221, 221);

}
#input-field {
    width: 100%;
    margin: 2vh 0;
    display: flex;
    justify-content: center;
}
#input-field input {
    width: 100%;
    min-width: 0;
    height: 6vh;
    border-radius: 2vw;
    border: none;
    padding: 0 2vw;
    font-size: 1.2vw;
    box-sizing: border-box;
    background: #222;
    color: #fff;
    outline: none;
    transition: box-shadow 0.2s;
}
#input-field input:focus {
    box-shadow: 0 0 0 0.4vw #720f11;
}
@media (max-width: 600px) {
    #Back-Text {
        overflow: hidden !important;
    }
    #text {
        font-size: 10vw;
        letter-spacing: 0.4vw;
    }
    #Island {
        width: 80vw;
        max-width: 80vw;
        padding: 4vh 2vw;
    }
    #input-field input, #bottom button {
        font-size: 3vw;
        height: 6lvh;
        border-radius: 16px;
    }
    #bottom button {
        border: none;
        background-color: whitesmoke;
        color: black;
        font-size: 4vw;
        text-transform: uppercase;
        font-weight: 500;
        height: 5lvh;
        width: 60%;
    }
}