@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --border: 1px solid rgba(255, 255, 255, 0.25);
    --border-radius: 12px;
    --height: 30px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100dvh;
    background-color: rgb(15, 15, 15);
}

#FormContainer{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 25%;
    background: rgba(255, 255, 255, 0.01);
    border: var(--border);
    border-radius: var(--border-radius);
    padding: 50px 30px;
    overflow: hidden;
}

#FormContainer > p {
    font-size: 3vw;
    font-weight: 100;
    color: white;
    text-align: center;
    margin-bottom: 20px;
}

#FormContainer form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

#FormContainer form > label {
    width: 100%;
    font-size: 0.9rem;
    font-weight: 200;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 4px;
    margin-top: 10px;
}

#FormContainer form > input {
    /* height: var(--height); */
    width: 100%;
    background: transparent;
    border: var(--border);
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--border-radius);
    padding: 6px 10px;
    margin-bottom: 20px;
    color: white;
    font-weight: 300;
}

#FormContainer form > button {
    align-self: center;
    width: 100%;
    height: var(--height);
    border: none;
    border-radius: var(--border-radius);
    padding: 4px 10px;
    margin-top: 30px;
}

@media (max-width: 1024px) {
    #FormContainer{
        width: 90%;
    }
    }