.form-card{
    color: white;
    font-size: 1.5rem;
    font-weight: 500;
    min-width: 300px;
    max-width: 370px;
    width: 100%;
    position: relative;
    margin: auto;
    background: #212121;
    padding: 5px 15px;
    border-radius: 10px;
    box-shadow: 0 0 25px var(--container-color);
}

@media (max-width: 375px) {
    .form-card{
        max-width: 350px;
    }
}

@media (max-width: 320px) {
    .form-card{
        max-width: 300px;
    }
}

.button-zone{
    display: flex;
    width: 60%;
    height: 30px;
    margin: auto;
    margin-top: 15px;
    justify-content: space-between;
    align-items: center;
}

.filter-button{
    font-size: 0.9rem;
    font-weight: 500;
    padding: 4px 10px;
    cursor: pointer;
}

.box-zone{
    background: #fff;
    color: black;
    margin-top: 15px;
    margin-bottom: 15px;
    padding: 5px 15px;
    width: 100%;
    border-radius: 10px;
}

.input-group{
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    justify-content: space-between;
    margin-top: 10px;
    margin-bottom: 10px;
    border-radius: 10px;
}

.input-group p{
    text-align: center;
    margin-bottom: 25px;
}

.input-field{
    border-radius: 5px;
    padding: 10px 20px;
    text-align: center;
    border: none;
    box-shadow: 0 0 10px var(--container-color);
}

.submit-btn{
    margin-top: 25px;
    margin-bottom: 25px;
    border-radius: 5px;
    padding: 10px 20px;
    text-align: center;
    border: none;
    box-shadow: 0 0 10px var(--container-color);
}