main{
    padding: 50px 0;
    form{
        .inputs{
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
            padding-bottom: 20px;
            .single{
                width: 100%;
                display: flex;
                flex-direction: column;
                label{
                    color: #F2BA1C;
                    font-size: 12px;
                }
                input, textarea, select, button{
                    padding: 10px;
                    border: 0.5px solid #0000004b;
                    border-radius: 5px;
                    width: 100%;
                    outline: none;
                    appearance: none;
                }
                select{
                    color: #000;
                    opacity: 0.6;
                }
                button{
                    border: none;
                    background-color: #F2BA1C;
                    color: #fff;
                    text-transform: uppercase;
                    letter-spacing: 1px;
                    font-weight: 700;
                    transition: .3s;
                    &:hover{
                        background-color: #bb8a02;
                    }
                }
            }
        }
    }
}