form{
    display: flex;
    flex-direction: column;
    gap: 20px;

}
label{
    font-size: var(--font-size-h4);
    font-weight: var(--font-weight-medium);
    font-family: var(--font-title);
    color: var(--color-secondary);
}
button{
    background-color: var(--color-primary);
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: var(--font-size-h4);
    font-weight: var(--font-weight-medium);
    font-family: var(--font-title);
    cursor: pointer;

}
